-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 915 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
34
35
36
37
38
39
from setuptools import find_packages, setup
# Required dependencies
coom_requirements = [
"vizdoom",
"opencv-python",
"scipy==1.11.4",
]
cl_requirements = [
"tensorflow==2.11",
"tensorflow-probability==0.19",
"wandb",
]
results_processing_requirements = [
"wandb",
"matplotlib",
"seaborn",
'pandas',
]
setup(
name="COOM",
description="COOM: Benchmarking Continual Reinforcement Learning on Doom",
version='1.0.0',
url='https://github.com/hyintell/COOM',
author='Tristan Tomilin',
author_email='[email protected]',
license='MIT',
keywords=["continual learning", "vizdoom", "reinforcement learning", "benchmarking"],
packages=find_packages(),
include_package_data=True,
install_requires=coom_requirements,
extras_require={
'cl': cl_requirements,
'results': results_processing_requirements,
},
)