Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
milan-tom authored Mar 24, 2022
1 parent dee5f0a commit b2dcba3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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",
]
)

0 comments on commit b2dcba3

Please sign in to comment.