kalente/pyproject.toml
Kumi 4a6c825394
All checks were successful
Python Package CI/CD / Publish to PyPI (push) Successful in 40s
refactor: streamline kalente module structure
Introduced a `Calendar` class to encapsulate calendar-related functionalities, removing redundant code and improving module organization. This refactor simplifies `__main__.py` by delegating calendar operations to the `Calendar` class, enhancing readability and maintainability. Adjusted import statements in `__init__.py` to reflect these changes, ensuring the module's public API remains clear and intuitive. The refactor also includes minor optimizations, such as consolidating validation logic and updating default image data, contributing to a leaner codebase.

This change aims to make future extensions and maintenance of the `kalente` module more manageable, paving the way for further enhancements and features.
2024-05-28 12:49:59 +02:00

32 lines
No EOL
752 B
TOML

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