forked from uber-research/PyTorch-NEAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 760 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
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",
]
)