26 lines
570 B
TOML
26 lines
570 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea134-matchops-federated-verifiable"
|
|
version = "0.1.0"
|
|
description = "Federated, verifiable session orchestration primitives for large-scale multiplayer games"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pydantic>=2.7,<3",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://example.invalid/matchops"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|