print-wp-sources/pyproject.toml
2024-12-04 12:34:45 -06:00

26 lines
709 B
TOML

[project]
name = "print-wp-sources"
version = "0.1"
authors = [
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
]
description = "Print sources from Wikipedia articles to stdout."
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",
]
[project.scripts]
print-wp-sources = "print_wp_sources:main"
[project.urls]
Homepage = "https://codeberg.org/hyperreal/print-wp-sources"
Issues = "https://codeberg.org/hyperreal/print-wp-sources/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"