-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (70 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "dialectical-checkers"
version = "0.1.0"
description = "A dialectical English-draughts engine experiment built around argument-graph move selection"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "ctoth" },
]
keywords = [
"checkers",
"draughts",
"argumentation",
"formal-argumentation",
"dialectical-reasoning",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"formal-argumentation @ git+https://github.com/ctoth/argumentation.git@d47c87003afdce450bfeff10f242309c510f1690",
"doxa @ git+https://github.com/ctoth/doxa.git@f076502184990a42f1531d3d7a27a5bcf606074c",
]
[project.urls]
Homepage = "https://github.com/ctoth/dialectical-checkers"
Repository = "https://github.com/ctoth/dialectical-checkers"
Issues = "https://github.com/ctoth/dialectical-checkers/issues"
[project.scripts]
dchk-match = "dialectical_checkers.cli.match_cli:main"
dchk-eval = "dialectical_checkers.cli.eval_cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["dialectical_checkers"]
[tool.pyright]
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
include = ["dialectical_checkers", "tests"]
extraPaths = ["."]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"unit: focused unit-level contract tests",
"property: property-based or metamorphic tests",
"differential: differential or oracle-comparison tests",
]
[dependency-groups]
dev = [
"hypothesis>=6.0",
"pydraughts>=0.6.7",
"pyright>=1.1.390",
"pytest>=8.0",
"pytest-timeout>=2.3",
]