mirror of
https://github.com/obra/superpowers.git
synced 2026-05-10 02:59:04 +08:00
rsync of obra/drill@013fcb8b7d into superpowers/evals/, excluding .git/, .venv/, results/, .env/, __pycache__/, *.egg-info/, .private-journal/. The drill repo is unaffected by this commit; archival is a separate manual step after this PR merges. Source SHA recorded at evals/.drill-source-sha for divergence detection.
37 lines
709 B
TOML
37 lines
709 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "drill"
|
|
version = "0.1.0"
|
|
description = "Superpowers skill compliance benchmark"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"click>=8.1",
|
|
"pyyaml>=6.0",
|
|
"anthropic>=0.42",
|
|
"jinja2>=3.1",
|
|
"pydantic>=2.0",
|
|
"python-dotenv>=1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0", "ruff>=0.11", "ty>=0.0.1a1"]
|
|
|
|
[project.scripts]
|
|
drill = "drill.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["drill", "setup_helpers"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
|
|
[tool.ty.environment]
|
|
python-version = "3.11"
|