-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 828 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
25
26
27
28
29
30
31
32
33
from setuptools import setup
requires = [
"torch==1.13.0",
"stable-baselines3==1.1.0",
"tensorboardX==2.6",
"opencv-python==4.6.0.66",
"gym[mujoco_py, classic_control]==0.23.1",
"jax==0.4.6",
"flax==0.6.7",
"optax==0.1.4",
"tensorflow-probability==0.19.0",
"ale-py==0.7.4",
"mujoco-py==2.1.2.14",
"tqdm==4.64.0",
"protobuf==3.19.4",
"pyrallis==0.3.1",
"pytest==7.2.2",
"d4rl @ git+https://github.com/alexchen-buaa/d4rl.git",
]
setup(
name="flexrl",
version="0.0.1",
description="Non-modular implementation of common RL algorithms",
author="alexchen-buaa",
author_email="[email protected]",
project_urls={
"Source": "https://github.com/alexchen-buaa/flexrl",
},
python_requires=">=3.8, <4",
install_requires=requires,
)