2024-12-05 05:51:59 +01:00
|
|
|
[project]
|
|
|
|
name = "dl-sh-source"
|
2025-01-22 08:14:28 +01:00
|
|
|
version = "0.4"
|
2024-12-05 05:51:59 +01:00
|
|
|
authors = [
|
|
|
|
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
|
|
|
|
]
|
|
|
|
description = "Download articles from Sci Hub given the article's DOI."
|
|
|
|
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 = ["beautifulsoup4>=4.12.3", "requests>=2.32.3"]
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
dl-sh-source = "dl_sh_source:main"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://codeberg.org/hyperreal/dl-sh-source"
|
|
|
|
Issues = "https://codeberg.org/hyperreal/dl-sh-source/issues"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|