dl-wp-pdf/pyproject.toml

26 lines
660 B
TOML
Raw Normal View History

2024-12-04 09:25:49 +01:00
[project]
name = "dl-wp-pdf"
2024-12-04 10:00:38 +01:00
version = "0.9"
2024-12-04 09:51:27 +01:00
authors = [
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
]
description = "Download Wikipedia articles as PDF"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
2024-12-04 09:25:49 +01:00
[project.scripts]
2024-12-04 10:00:38 +01:00
dl-wp-pdf = "dl_wp_pdf:main"
2024-12-04 09:25:49 +01:00
2024-12-04 09:51:27 +01:00
[project.urls]
Homepage = "https://codeberg.org/hyperreal/dl-wp-pdf"
Issues = "https://codeberg.org/hyperreal/dl-wp-pdf/issues"
2024-12-04 09:25:49 +01:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"