Kumi
1e9430c2e7
All checks were successful
Python Package CI/CD / Publish to PyPI (push) Successful in 42s
Added an example in README for generating a weekly calendar programmatically using Kalente. This assists developers by demonstrating how to integrate Kalente into their projects. fix: default options parameter in convert_html_to_pdf Updated the `options` parameter in `convert_html_to_pdf` to default to an empty dictionary. This prevents potential NoneType errors and ensures consistent behavior. chore: bump version to 0.2.1 Updated version in pyproject.toml to reflect the new features and bug fixes.
32 lines
No EOL
752 B
TOML
32 lines
No EOL
752 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "kalente"
|
|
version = "0.2.1"
|
|
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" |