forked from perone/Pyevolve
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 732 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#from distutils.core import setup #changed to distutils.core for pypy comptibility
from setuptools import setup
import sys
setup(
name = "Pyevolve",
version = '0.6',
packages = ["pyevolve"],
scripts = ['pyevolve_graph.py'],
install_requires = ['future'],
package_data = {
'pyevolve': ['*.txt']
},
test_suite = 'tests',
author = 'Christian S. Perone',
author_email = "christian.perone@gmail.com",
description = "A complete, free and open-source evolutionary framework written in Python",
license = "PSF",
keywords = "genetic algorithm genetic programming algorithms framework library python ai evolutionary framework",
url = "http://pyevolve.sourceforge.net/",
)