-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (38 loc) · 1.22 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
# Package ######################################################################
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mpe2"
description = "Multi Particle Environments Version 2"
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 :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = ["pettingzoo>=1.24.3", "pygame>=2.6.0"]
dynamic = ["version"]
[project.optional-dependencies]
testing = [
"pynput==1.7.6",
"pytest==8.0.0",
"pytest-cov==4.1.0",
"pytest-xdist==3.5.0",
"pre-commit==3.5.0",
"pytest-markdown-docs==0.5.0",
]
# Linters and Test tools #######################################################
[tool.black]
line-length = 88
[tool.isort]
atomic = true
profile = "black"
src_paths = ["mpe2", "test"]