From 817acabd51e5cd20b1657ad8af8503e252896301 Mon Sep 17 00:00:00 2001 From: Milan Tom <48379919+milan-tom@users.noreply.github.com> Date: Thu, 31 Mar 2022 00:12:56 +0100 Subject: [PATCH] Create setup.py --- setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..dfa58d3 --- /dev/null +++ b/setup.py @@ -0,0 +1,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", + ] +)