forked from Metta-AI/cogames
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.14 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "cogames"
description = "Multi-agent cooperative games"
readme = "README.md"
requires-python = ">=3.11.7"
dependencies = [
"heavyball>=2.0.0",
"mettagrid",
"packaging>=24.0.0",
"pufferlib-core",
"pydantic>=2.11.5",
"pyyaml>=6.0.2",
"einops>=0.8.0",
"scipy>=1.15.3",
"typer>=0.9.0",
"rich>=13.7.0",
]
dynamic = ["version"]
[project.scripts]
cogames = "cogames.main:app"
[tool.setuptools.packages.find]
where = ["src"]
include = ["cogames", "cogames.*"]
[tool.setuptools.package-data]
cogames = ["py.typed"]
[tool.setuptools_scm]
tag_regex = "^cogames-v(?P<version>\\d+\\.\\d+\\.\\d+(?:\\.\\d+)?)$"
version_scheme = "no-guess-dev"
local_scheme = "node-and-date"
root = "../.."
fallback_version = "0.0.0"
[tool.setuptools_scm.scm.git]
describe_command = [
"git",
"describe",
"--dirty",
"--tags",
"--long",
"--match",
"cogames-v*",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.coverage.run]
source = ["cogames"]
[tool.uv.sources]
mettagrid = { workspace = true }