-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (33 loc) · 1.11 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "patata"
version = "3.6.0"
description = "Simple lightweight HTTP client to perform GET or POST requests in parallel with multiprocessing and in each process use aiohttp to do them concurrently and maximize the throughtput."
requires-python = ">=3.8"
dependencies = [
"aiohttp>=3.8.4,<4",
"aiohttp_retry>=2.8.3,<3",
"pydantic>=1.9,<2",
'importlib-metadata; python_version<"3.9"',
]
readme = "README.md"
authors = [
{name = "Oriol Alfonso", email = "[email protected]"},
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"Framework :: aiohttp",
]
[project.urls]
repository = "https://github.com/oalfonso-o/patata"
documentation = "https://github.com/oalfonso-o/patata/blob/main/README.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"