forked from zjowowen/GenerativeRL_Preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.1 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
46
47
48
49
50
51
from setuptools import setup, find_packages
setup(
name='GenerativeRL',
version='0.0.1',
description='PyTorch implementations of generative reinforcement learning algorithms',
author='zjowowen',
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
'gym',
'numpy<=1.26.4',
'torch>=2.2.0',
'opencv-python',
'tensordict',
'torchrl',
'di-treetensor',
'matplotlib',
'wandb',
'rich',
'easydict',
'tqdm',
'torchdyn',
'torchsde',
'scipy',
'POT',
'beartype',
'diffusers',
'av',
'moviepy',
'imageio[ffmpeg]',
],
dependency_links=[
'git+https://github.com/rtqichen/torchdiffeq.git#egg=torchdiffeq',
],
extras_require={
'd4rl': [
'gym==0.23.1',
'mujoco_py',
'Cython<3.0',
],
'DI-engine': [
'DI-engine',
],
'formatter': [
'black',
'isort',
],
}
)