-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
50 lines (45 loc) · 1.09 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="marltoolbox",
version="0.0.5",
packages=find_packages(),
description="CLR MARL research framework toolbox",
long_description=read("README.md"),
license="MIT",
install_requires=[
"ray[rllib]==1.0.0",
"gym==0.17.3",
"torch>=1.6.0,<=1.7.0",
"tensorboard==1.15.0",
"numba>=0.51.2",
"matplotlib>=3.3.2",
"wandb",
"seaborn==0.9.0",
"tqdm",
],
extras_require={
"lola": [
"click",
"gym>=0.10.5",
"mock",
"numpy>=1.11",
"dm-sonnet==1.20",
"tensorflow>=1.8.0,<2.0.0",
"trueskill",
],
"ci": [
"pytest",
"pytest-cov",
"flake8",
"ipython",
"notebook",
"jupyter_contrib_nbextensions",
"flaky",
"pytest-xdist",
],
"dev": ["black[d]"],
},
)