blob: 10fbe1822adf5006f558ece6bf4625cf703f17d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/python
from distutils.core import setup, Extension
thread = Extension("geneticone.modules.geneticthread", sources=["geneticone/modules/geneticthread.c"])
setup(name="Genetic/One",
version="0.1-alpha",
author="Necoro d.M. et.al.",
author_email="geneticone@projects.necoro.net",
packages=["geneticone", "geneticone.gui"],
ext_modules=[thread]
)
|