-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (57 loc) · 1.42 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
62
63
64
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "stackerlberg"
version = "0.0.1"
authors = [
{ name="Matthias Gerstgrasser", email="[email protected]" },
]
description = "A package for multi-agent RL with Stackelberg equilibrium guarantees"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
dependencies = [
"ray[rllib]==2.0.1",
"torch>=1.12.0",
"tensorflow>=2.9.1",
"wandb>=0.12.21",
"hyperopt>=0.2.7",
"gym>=0.21.0",
"numpy==1.23.0",
"pydantic<2.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/mgerstgrasser/oracles_and_followers"
"Bug Tracker" = "https://github.com/mgerstgrasser/oracles_and_followers/issues"
[tool.setuptools]
packages = ["stackerlberg"]
[project.optional-dependencies]
tests = [
'pytest >= 7.1.2',
'pytest-xdist[psutil] >= 2.5.0',
'pytest-forked >= 1.4.0',
]
format = [
'black >= 23.7.0',
'isort >= 5.10.1',
]
# Options for isort, black, etc.
[tool.isort]
profile = "black"
[tool.black]
line-length = 140
[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 -m 'not slow'"