-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
27 lines (26 loc) · 1.22 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
from setuptools import setup
setup(
name='deep_hyperneat',
version='0.1.0',
author='Sosa, Felix',
author_email='[email protected]',
maintainer='Sosa, Felix',
maintainer_email='[email protected]',
url='https://github.com/flxsosa/DeepHyperNEAT',
license="MIT",
description='A public python implementation of the DeepHyperNEAT system for evolving neural networks.',
long_description='A public python implementation of the DeepHyperNEAT system for evolving neural networks. Developed by Felix Sosa and Kenneth Stanley. See paper here: https://eplex.cs.ucf.edu/papers/sosa_ugrad_report18.pdf',
packages=['deep_hyperneat'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.x',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering'
],
install_requires=['numpy', 'seaborn', 'graphviz', 'matplotlib']
)