chaosevents/pyproject.toml

36 lines
541 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chaosevents"
version = "0.0.1"
authors = [
{ name="clerie", email="hallo@clerie.de" },
]
description = ""
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.11"
dependencies = [
"ics",
"jinja2",
"markdown2",
"requests",
]
[project.scripts]
chaosevents = "chaosevents:cli"
[project.urls]
"Source" = "https://git.clerie.de/clerie/chaosevents"
[tool.hatch.build]
include = [
"*.py",
"assets",
"templates",
]