-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
45 lines (44 loc) · 1.43 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name="pytorch-rl-il",
version="0.0.1",
description=(
"A library for building reinforcement learning and imitation learning agents in Pytorch"),
packages=find_packages(),
url="https://github.com/syuntoku14/pytorch-rl-il",
author="Toshinori Kitamura",
author_email="[email protected]",
install_requires=[
"gym[atari,box2d]", # atari environments
"numpy", # math library
"matplotlib", # plotting library
"seaborn", # plotting library
"pandas",
"opencv-python", # used by atari wrappers
"pybullet", # continuous environments
"autopep8", # code quality tool
"torch-testing", # testing library for pytorch
"ray", # multiprocessing tool
"pytest", # python testing library
"cpprb", # fast replay buffer library
"pytest-benchmark",
"gitpython"
# these should be installed globally:
# "tensorflow", # needed for tensorboard
# "torch", # deep learning library
# "torchvision", # install alongside pytorch
],
extras_require={
"pytorch": [
"torch",
"torchvision",
"tensorboard"
],
"docs": [
"sphinx",
"sphinx-autobuild",
"sphinx-rtd-theme",
"sphinx-automodapi"
]
},
)