mirror of
https://codeberg.org/hyperreal/print-links
synced 2025-01-18 08:53:44 +01:00
27 lines
765 B
TOML
27 lines
765 B
TOML
[project]
|
|
name = "print-links"
|
|
version = "0.3"
|
|
authors = [
|
|
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
|
|
]
|
|
description = "Print links contained in given URL 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",
|
|
]
|
|
dependencies = ["courlan>=1.3.2", "requests>=2.32.3"]
|
|
|
|
[project.scripts]
|
|
print-links = "print_links:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://codeberg.org/hyperreal/print-links"
|
|
Issues = "https://codeberg.org/hyperreal/print-links/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|