-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 784 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='continual_rl',
version='1.0',
description='Continual reinforcement learning baselines and standard experiments.',
author='Sam Powers',
author_email='snpowers@cs.cmu.edu',
packages=find_packages(),
py_modules=['continual_rl.available_policies', 'continual_rl.experiment_specs'],
install_requires=['setuptools==59.5.0',
'uuid',
'numpy',
'tensorboard',
'torch-ac',
'gym[atari]<=0.25.2',
'atari-py==0.2.5',
'moviepy',
'dotmap',
'psutil',
'opencv-python'
]
)