1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
from setuptools import setup, find_packages
from pyevolve import __version__, __author__
setup(
name = "Pyevolve",
version = __version__,
packages = ["pyevolve"],
scripts = ['pyevolve_graph.py'],
package_data = {
'pyevolve': ['*.txt']
},
author = __author__,
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/"
)
|