-
-
Notifications
You must be signed in to change notification settings - Fork 413
/
pyproject.toml
109 lines (98 loc) · 2.94 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Package ######################################################################
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pettingzoo"
description = "Gymnasium for multi-agent reinforcement learning."
readme = "README.md"
requires-python = ">= 3.8"
authors = [{ name = "Farama Foundation", email = "[email protected]" }]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "game", "RL", "AI", "gymnasium"]
classifiers = [
"Development Status :: 4 - Beta", # change to `5 - Production/Stable` when ready
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"numpy>=1.21.0",
"gymnasium>=0.28.0",
]
dynamic = ["version"]
[project.optional-dependencies]
# Update dependencies in `all` if any are added or removed
atari = ["multi_agent_ale_py>=0.1.11", "pygame>=2.3.0"]
classic = [
"chess>=1.9.4",
"rlcard>=1.0.5",
"pygame>=2.3.0",
"shimmy[openspiel]>=1.2.0"
]
butterfly = ["pygame>=2.3.0", "pymunk>=6.2.0"]
mpe = ["pygame>=2.3.0"]
sisl = ["pygame>=2.3.0", "pymunk>=6.2.0", "box2d-py>=2.3.5", "scipy>=1.4.1"]
other = ["pillow>=8.0.1"]
testing = [
"pynput>=1.7.6",
"pytest>=8.0.0",
"AutoROM>=0.6.1",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.5.0",
"pre-commit>=3.5.0",
"pytest-markdown-docs>=0.5.0"
]
all = [
"multi_agent_ale_py>=0.1.11",
"pygame>=2.3.0",
"chess>=1.9.4",
"rlcard>=1.0.5",
"shimmy[openspiel]>=1.2.0",
"pymunk>=6.2.0",
"box2d-py>=2.3.5",
"scipy>=1.4.1",
"pillow>=8.0.1",
]
[project.urls]
Homepage = "https://farama.org"
Repository = "https://github.com/Farama-Foundation/PettingZoo"
Documentation = "https://pettingzoo.farama.org"
"Bug Report" = "https://github.com/Farama-Foundation/PettingZoo/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pettingzoo", "pettingzoo.*"]
# Linters and Test tools #######################################################
[tool.black]
safe = true
[tool.isort]
atomic = true
profile = "black"
src_paths = ["pettingzoo", "test"]
[tool.pyright]
# add any files/directories with type declaration to include
include = [
"pettingzoo/",
]
exclude = [
"pettingzoo/atari/",
"pettingzoo/butterfly/",
"pettingzoo/classic/",
"pettingzoo/mpe/",
"pettingzoo/sisl/",
"pettingzoo/test/",
]
strict = [
]
verboseOutput = true
typeCheckingMode = "basic"
reportMissingImports = false
[tool.pytest.ini_options]
addopts = [ "--ignore-glob=*/__init__.py", "-n=auto", "--ignore=tutorials", "--ignore=docs/_scripts", "--ignore=conf.py"]