Kumi
60cfcc70dd
- Added .gitignore file to specify files and directories to ignore in version control. - Added LICENSE file with MIT license. - Added README.md file with project information and license details. - Added pyproject.toml file with project metadata and dependencies. - Added kalente source files for generating PDF calendars. - Implemented functions for generating weekly calendars, converting HTML to PDF, and CLI parsing. - Created a template for rendering weekly calendars in HTML format.
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.1.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" |