forked from CodeReclaimers/neat-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 968 Bytes
/
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
from setuptools import setup
setup(
name='neat-python',
version='0.7',
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 :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering'
]
)