35 lines
512 B
TOML
35 lines
512 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"
|
|
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",
|
|
]
|
|
|