From b2dcba3bce724b8a86b99c765a3e39fc82e5d32f Mon Sep 17 00:00:00 2001 From: Milan Tom <48379919+milan-tom@users.noreply.github.com> Date: Thu, 24 Mar 2022 18:27:51 +0000 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..3306087 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from setuptools 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", + ] +)