35 lines
650 B
TOML
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 = []
|
|
|