-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.3 KB
/
pyproject.toml
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
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "suPER"
version = "0.0.1"
authors = [
{ name="Matthias Gerstgrasser", email="[email protected]" },
{ name="Tom Danino", email="[email protected]" },
{ name="Sarah Keren", email="[email protected]" },
]
description = "A package for selective multiagent PER (suPER) learning"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
dependencies = [
"ray[rllib]>=2.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools]
packages = ["suPER"]
[project.optional-dependencies]
tests = [
'pytest >= 7.1.2',
'pytest-xdist[psutil] >= 2.5.0',
]
format = [
'black >= 22.6.0',
'isort >= 5.10.1',
]
experiments = [
"torch>=1.12.0",
"tensorflow>=2.9.1",
"wandb>=0.12.21",
"pettingzoo[atari,magent,sisl]>=1.20.1",
"supersuit>=3.5.0",
]
# Options for isort, black, etc.
[tool.isort]
profile = "black"
[tool.black]
line-length = 255
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
# addopts = "-m 'not slow'"
addopts = "-n auto"