-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 1.15 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
[tool.poetry]
name = "snowdrop-adjudicators"
version = "0.1.0"
description = "Two public adjudicators for the Tangled game"
authors = ["Geordie Rose <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/snowdropquantum/snowdrop-adjudicators"
repository = "https://github.com/snowdropquantum/snowdrop-adjudicators"
documentation = "https://github.com/snowdropquantum/snowdrop-adjudicators"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/snowdropquantum/snowdrop-adjudicators/issues"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
dwave-neal = ">=0.6.0"
scipy = ">=1.16.3"
snowdrop-tangled-game-engine = ">=1.1.0"
[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 = ["snowdrop_adjudicators/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--verbose --cov=snowdrop_adjudicators --cov-report=html --cov-report=term"
[tool.setuptools.packages.find]
exclude = ["snowdrop_adjudicators.tests*"]