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