test-driver/pyproject.toml

21 lines
489 B
TOML
Raw Normal View History

[project]
name = "test-driver"
version = "0.1.0"
description = "Use-case-driven verification framework whose tests mature alongside the software they protect"
requires-python = ">=3.11"
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=7.4"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/testdriver"]
[tool.pytest.ini_options]
testpaths = ["tests", "crystallized"]
pythonpath = ["src", "."]