summaryrefslogtreecommitdiff
path: root/setup.py
blob: b7612c0eab1ec4c45a04f3bea140ebcd32cbe362 (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="SVN",
		author="Necoro d.M. et.al.",
		author_email="geneticone@projects.necoro.net",
		packages=["geneticone", "geneticone.gui"],
		#ext_modules=[thread]
		)