-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (24 loc) · 761 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (24 loc) · 761 Bytes
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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "structured-thinking-eval"
version = "0.1.0rc1"
description = "Deterministic evaluation and evidence tooling for structured-thinking skills"
requires-python = ">=3.11"
dependencies = ["jsonschema>=4.23,<5"]
[project.optional-dependencies]
test = ["pytest>=8,<10", "ruff>=0.12,<1"]
[project.scripts]
st-eval = "st_eval.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/st_eval"]
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100
extend-exclude = ["structured-thinking-workspace"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "B", "UP"]