chaosevents/pyproject.toml

36 lines
541 B
TOML
Raw Permalink Normal View History

2023-06-13 12:30:20 +02:00
[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"
2024-01-08 16:50:20 +01:00
license = { file="LICENSE" }
2023-06-13 12:30:20 +02:00
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",
]