File: buildAntSimFast.py

package info (click to toggle)
deap 1.0.2.post2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,816 kB
  • sloc: python: 6,914; cpp: 482; makefile: 84; sh: 10
file content (9 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
from distutils.core import setup, Extension

module1 = Extension('AntC',
                    sources = ['AntSimulatorFast.cpp'])

setup (name = 'AntC',
       version = '1.0',
       description = 'Fast version of the Ant Simulator (aims to replace the AntSimulator class)',
       ext_modules = [module1])