forked from crisbodnar/TensorFlow-NEAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 841 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
25
26
from distutils.core import setup
setup(
name="tf-neat",
version="1.0",
license="Apache License 2.0",
description="An extension of NEAT-Python using TensorFlow",
long_description=(
"TensorFlow NEAT builds upon NEAT-Python by providing some functions which can"
" turn a NEAT-Python genome into either a recurrent TensorFlow network or a"
" TensorFlow CPPN for use in HyperNEAT or Adaptive HyperNEAT."
),
author="Cristian Bodnar",
maintainer_email="cb2015@cam.ac.uk",
url="https://github.com/crisbodnar/TensorFlow-NEAT",
packages=["tf_neat"],
install_requires=[
"neat-python>=0.92",
"numpy>=1.14.3",
"gym>=0.10.5",
"click>=6.7",
"tensorflow>=1.12.2",
"keras-applications>=1.0.6",
"keras-preprocessing>=1.0.5",
]
)