From d566e3c0bfe4f520e0c3a2b2baa9fa10cfa11766 Mon Sep 17 00:00:00 2001 From: Milan Tom <48379919+milan-tom@users.noreply.github.com> Date: Wed, 30 Mar 2022 23:51:52 +0100 Subject: [PATCH] Create setup.py --- setup.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..617c532 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from distutils.core import setup + +setup( + name="pytorch-neat", + version="1.0", + license="Apache License 2.0", + description="An extension of NEAT-Python using PyTorch", + long_description=( + "PyTorch NEAT builds upon NEAT-Python by providing some functions which can" + " turn a NEAT-Python genome into either a recurrent PyTorch network or a" + " PyTorch CPPN for use in HyperNEAT or Adaptive HyperNEAT." + ), + author="Alex Gajewsky", + maintainer_email="joel.lehman@uber.com", + url="https://github.com/uber-research/PyTorch-NEAT", + packages=["pytorch_neat"], + install_requires=[ + "neat-python>=0.92", + "numpy>=1.14.3", + "gym>=0.10.5", + "click>=6.7", + "torch>=0.4.0", + ] +)