File: setup.py

package info (click to toggle)
pyevolve 0.6~rc1%2Bsvn398%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,060 kB
  • ctags: 832
  • sloc: python: 5,119; xml: 183; sh: 71; makefile: 38
file content (18 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (4)
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/"
)