-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 1.26 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
setup(
name='pureples',
version='0.0',
author='adrian, simon',
author_email='[email protected]',
maintainer='simon, adrian',
maintainer_email='[email protected]',
url='https://github.com/ukuleleplayer/pureples',
license="MIT",
description='HyperNEAT and ES-HyperNEAT implemented in pure Python',
long_description='Python implementation of HyperNEAT and ES-HyperNEAT ' +
'developed by Adrian Westh and Simon Krabbe Munck for evolving arbitrary neural networks. ' +
'HyperNEAT and ES-HyperNEAT is originally developed by Kenneth O. Stanley and Sebastian Risi',
packages=['pureples', 'pureples/hyperneat', 'pureples/es_hyperneat', 'pureples/shared'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.x',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering'
],
install_requires=['numpy', 'neat-python', 'graphviz', 'matplotlib', 'gym']
)