Files
flakes/python/pyproject.toml
Martin Pander 395a70b759 Initial commit
2026-02-23 21:45:13 +01:00

35 lines
650 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "my-app"
version = "0.1.0"
description = "Python development environment"
requires-python = ">=3.11"
#readme = "README.md"
#license = {text = "MIT"}
# authors = [
# {name = "Martin Pander", email = "martin.pander@knowtion.de"},
# ]
dependencies = [
]
[project.scripts]
my-app = "my_app.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/my_app"]
[tool.hatch.build.targets.sdist]
include = ["src"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"] # Error, Pyflakes, Isort
dependencies = []