-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 1.19 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
[tool.poetry]
name = "snowdrop-tangled-agents"
version = "0.0.5"
description = "Agents for the Tangled game"
authors = ["Geordie Rose <greatblueheron@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/snowdropquantum/snowdrop-tangled-agents"
repository = "https://github.com/snowdropquantum/snowdrop-tangled-agents"
documentation = "https://github.com/snowdropquantum/snowdrop-tangled-agents"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/snowdropquantum/snowdrop-tangled-agents/issues"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
snowdrop-tangled-game-engine = ">=1.1.0"
snowdrop-adjudicators = ">=0.1.0"
scipy = ">=1.16.2"
coloredlogs = ">=15.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-cov = "^7.0.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["ssnowdrop-tangled-agents/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--verbose --cov=snowdrop_tangled_agents --cov-report=html --cov-report=term"
[tool.setuptools.packages.find]
exclude = ["snowdrop_tangled_agents.tests*"]