kalente/pyproject.toml
Kumi df3d17ba58
Remove logo data from templates, add logo args
Removed the hard-coded data: URIs from the template files. Implemented a
--logo argument to provide a logo file, and a --no-logo argument to
prevent the default logo from being displayed. Data URIs are now created
on demand and passed as context to the templates.

Bumped version to 0.1.3
2024-02-14 20:57:17 +01:00

32 lines
No EOL
752 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kalente"
version = "0.1.3"
authors = [
{ name="Kumi Mitterer", email="kalente@kumi.email" },
]
description = "Simple Python script to generate a printable calendar"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"holidays",
"pdfkit",
"jinja2",
"python-dateutil",
]
[project.urls]
"Homepage" = "https://kumig.it/kumitterer/kalente"
"Bug Tracker" = "https://kumig.it/kumitterer/kalente/issues"
[project.scripts]
kalente = "kalente.__main__:main"