forked from sjtu-marl/malib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (49 loc) · 1.28 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
52
from os import path
from setuptools import setup, find_packages
DIR = path.abspath(path.dirname(__file__))
with open(path.join(DIR, "README.md"), encoding="utf-8") as f:
long_desc = f.read()
setup(
name="MALib",
description="A Parallel Framework for Population-based MARL",
long_description=long_desc,
long_description_content="text/markdown",
version="0.1.0",
packages=find_packages(exclude="tests"),
include_packages_data=True,
zip_safe=True,
python_requires=">=3.7",
install_requires=[
"wrapt",
"ray==1.3.0",
"pettingzoo==1.9.0",
"grpcio-tools",
"protobuf3-to-dict",
"pickle5",
"torch",
"tensorboardX",
"tensorboard",
"readerwriterlock",
"nashpy==0.0.21",
"pymongo",
"psutil",
"pyecharts",
],
extras_require={
"dev": [
"pip==21.0.1",
"black==20.8b1",
"pytest",
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-apidoc",
],
"envs": [
# "vizdoom==1.1.8",
# "git+https://github.com/oxwhirl/smac.git",
"supersuit==2.6.6",
"multi-agent-ale-py==0.1.11",
"autorom==0.1.20",
],
},
)