blob: 26796a76a6dd20d05064a82ed72b0a6a5b1bb292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup, Extension
#thread = Extension("geneticone.modules.geneticthread", sources=["geneticone/modules/geneticthread.c"])
setup(name="Genetic/One",
version="SVN",
author="René 'Necoro' Neumann",
license="GPLv2",
author_email="necoro@necoro.net",
packages=["geneticone", "geneticone.gui", "geneticone.backend", "geneticone.gui.gtk"],
#ext_modules=[thread]
)
|