Genetic Turmit Evolver
python
c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 247B

123456789101112
  1. from distutils.core import setup, Extension
  2. module1 = Extension('cturmit',
  3. sources = ['cturmit.c', 'turmit.c'])
  4. setup(
  5. name = "Cturmit",
  6. version = '1.0',
  7. description = 'Turmit implementation in c',
  8. ext_modules = [module1]
  9. )