-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (28 loc) · 871 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
from setuptools import find_packages, setup
setup(
name='active_gym',
version='0.2',
author='Jinghuan Shang',
description=('Gym-like wrapper to implement Active Reinforcement Learning environments based on existing environments'),
keywords='active-reinforcement-learning active-rl reinforcement learning rl gym atari deepmind robosuite',
packages=find_packages(),
install_requires=[
"mujoco<3.0",
"mujoco-py>=2.1.2.14",
"atari-py",
"dm-control==1.0.11",
"gymnasium>=0.28.1,<1.0.0",
"torch",
"torchvision",
"transform3d"
],
extras_require={
"robosuite": [
"robosuite",
],
"rlbench": [
"PyRep @ git+https://github.com/stepjam/PyRep.git",
"RLBench @ git+https://github.com/stepjam/RLBench.git"
]
},
)