Add additional project metadata

This commit is contained in:
Pavel Zwerschke 2024-11-13 22:53:36 +01:00 committed by GitHub
parent 287173b0b1
commit 1a93a4a8a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,9 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "PFERD" name = "PFERD"
description = "Programm zum Flotten Einfachen Runterladen von Dateien"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [ dependencies = [
"aiohttp>=3.8.1", "aiohttp>=3.8.1",
"beautifulsoup4>=4.10.0", "beautifulsoup4>=4.10.0",
@ -13,6 +16,18 @@ dependencies = [
] ]
dynamic = ["version"] dynamic = ["version"]
requires-python = ">=3.9" requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Repository = "https://github.com/Garmelon/PFERD"
Issues = "https://github.com/Garmelon/PFERD/issues"
[project.scripts] [project.scripts]
pferd = "PFERD.__main__:main" pferd = "PFERD.__main__:main"