python_test_package/pyproject.toml

34 lines
616 B
TOML

[project]
name = "test-pkg"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Otthorn", email = "otthorn@crans.org" }
]
dependencies = [
"typer>=0.12.3",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/test_pkg"]
[tool.ruff.lint]
select = ["I"]
[tool.rye.scripts]
test_pkg = { call = "test_pkg.utils:app" }
cli = { call = "test_pkg.cli:app" }