asyncreq/pyproject.toml

44 lines
1.3 KiB
TOML

[build-system]
requires = ["hatchling >= 1.13.0"]
build-backend = "hatchling.build"
[project]
name = "asyncreq"
version = "0.0.6"
description = "A lightweight library for making asynchronous HTTP requests."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Santiago Lo Coco", email = "mail@slococo.com.ar" },
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastapi>=0.103.2",
"aiohttp>=3.8.6",
"async_timeout>=4.0.3"
]
[project.urls]
Homepage = "https://git.slc.ar/slococo/asyncreq"
Repository = "https://git.slc.ar/slococo/asyncreq"