generated from Hazel/python-project
40 lines
951 B
TOML
40 lines
951 B
TOML
[project]
|
|
name = "python-requests"
|
|
dependencies = [
|
|
"requests~=2.32.4"
|
|
]
|
|
dynamic = []
|
|
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."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
license-files = [
|
|
"LICENSE"
|
|
]
|
|
version = "0.0.0"
|
|
|
|
[project.scripts]
|
|
python-requests = "python_requests.__main__:cli"
|
|
|
|
[project.urls]
|
|
Homepage = "https://gitea.elara.ws/Hazel/python-requests"
|
|
Issues = "https://gitea.elara.ws/Hazel/python-requests/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build]
|
|
directory = "dist"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["python_requests/*.py"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["python_requests"]
|
|
|