fixed pyproject

This commit is contained in:
Hazel Noack 2025-06-11 11:03:06 +02:00
parent a31a172557
commit b14abe0abb

View File

@ -1,6 +1,8 @@
[project] [project]
name = "python-requests" name = "python-requests"
dependencies = [] dependencies = [
"requests~=2.32.4"
]
dynamic = [] dynamic = []
authors = [] authors = []
description = "A Python library for simplified HTTP requests, featuring rate limiting, browser-like headers, and automatic retries. Built on the official `requests` library for reliability." description = "A Python library for simplified HTTP requests, featuring rate limiting, browser-like headers, and automatic retries. Built on the official `requests` library for reliability."
@ -13,13 +15,14 @@ classifiers = [
license-files = [ license-files = [
"LICENSE" "LICENSE"
] ]
version = "0.0.0"
[project.scripts] [project.scripts]
python-requests = "python_requests.__main__:cli" python-requests = "python_requests.__main__:cli"
[project.urls] [project.urls]
Homepage = "/Hazel/python-requests" Homepage = "https://gitea.elara.ws/Hazel/python-requests"
Issues = "REPO_LINKissues" Issues = "https://gitea.elara.ws/Hazel/python-requests/issues"
[build-system] [build-system]
requires = ["hatchling"] requires = ["hatchling"]
@ -34,5 +37,3 @@ include = ["python_requests/*.py"]
[tool.hatch.build.targets.wheel] [tool.hatch.build.targets.wheel]
packages = ["python_requests"] packages = ["python_requests"]
[tool.hatch.version]
path = "python_requests/__about__.py"