-
Notifications
You must be signed in to change notification settings - Fork 90
/
pyproject.toml
62 lines (55 loc) · 1.88 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
[build-system]
requires=["setuptools>=62.6"]
build-backend="setuptools.build_meta"
[tool.setuptools.packages.find]
include=['mava*']
[project]
name="id-mava"
authors=[{name="InstaDeep Ltd"}]
dynamic=["version", "dependencies", "optional-dependencies"]
license={file="LICENSE"}
description="Distributed Multi-Agent Reinforcement Learning in JAX."
readme ="README.md"
requires-python=">=3.10"
keywords=["multi-agent", "reinforcement learning", "python", "jax", "anakin", "sebulba"]
classifiers=[
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
]
[tool.setuptools.dynamic]
version={attr="mava.__version__"}
dependencies={file="requirements/requirements.txt"}
optional-dependencies={dev={file=["requirements/requirements-dev.txt"]}}
[project.urls]
"Homepage"="https://github.com/instadeep/Mava"
"Bug Tracker"="https://github.com/instadeep/Mava/issues"
[tool.mypy]
python_version="3.10"
warn_redundant_casts=true
disallow_untyped_defs=true
strict_equality=true
follow_imports="skip"
ignore_missing_imports=true
[tool.ruff]
line-length=100
[tool.ruff.lint]
select=["A", "B", "E", "F", "I", "N", "W", "RUF", "ANN"]
ignore=[
"E731", # Allow lambdas to be assigned to variables.
"ANN101", # no need to type self
"ANN102", # no need to type cls
"ANN204", # no need for return type for special methods
"ANN401", # can use Any type
]
[tool.ruff.lint.pep8-naming]
ignore-names = ["?"]