21 lines
473 B
TOML
21 lines
473 B
TOML
|
|
[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"]
|
||
|
|
pythonpath = ["src", "."]
|