forked from CodeReclaimers/neat-python
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
31 lines (30 loc) · 1.29 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
30
31
from setuptools import setup
setup(
name='neat-python',
version='0.92',
author='cesar.gomes, mirrorballu2',
author_email='[email protected]',
maintainer='CodeReclaimers, LLC',
maintainer_email='[email protected]',
url='https://github.com/CodeReclaimers/neat-python',
license="BSD",
description='A NEAT (NeuroEvolution of Augmenting Topologies) implementation',
long_description='Python implementation of NEAT (NeuroEvolution of Augmenting Topologies), a method ' +
'developed by Kenneth O. Stanley for evolving arbitrary neural networks.',
packages=['neat', 'neat/iznn', 'neat/nn', 'neat/ctrnn'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering'
]
)