23 lines
432 B
TOML
23 lines
432 B
TOML
[project]
|
|
name = "readme-harness"
|
|
version = "0.2.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = ["PyYAML>=6.0"]
|
|
|
|
[project.scripts]
|
|
readme-harness = "readme_harness.cli:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|