kalente/pyproject.toml
Kumi 269e155f53
feat: bump version to 0.1.4 and set default logo SVG
Upgraded the project version to 0.1.4 in preparation for a new release. Additionally, introduced a default SVG data URL for the NO_LOGO constant in __main__.py, replacing the previously empty string. This change ensures a more meaningful default state for the logo, enhancing UI consistency and avoiding potential errors or unexpected behaviors in scenarios where a logo is required but not specified.
2024-05-28 12:23:03 +02:00

32 lines
No EOL
752 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kalente"
version = "0.1.4"
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"