-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 1.7 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "wreq"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
description = "An ergonomic Python HTTP Client with TLS fingerprint"
readme = "README.md"
dynamic = ["version"]
license = { text = "Apache-2.0" }
authors = [{ name = "0x676e67", email = "gngppz@gmail.com" }]
keywords = ["http", "client", "websocket", "ja3", "ja4"]
[tool.maturin]
python-source = "python"
[project.urls]
Documentation = "https://python.wreq.org"
Homepage = "https://github.com/0x676e67/wreq-python"
Repository = "https://github.com/0x676e67/wreq-python"
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
"pytest-rerunfailures",
]
docs = [
"zensical",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=1.0.3",
"mike>=2.0.0",
]
bench = [
"pytest",
"pyperf",
"starlette",
"niquests",
"httpx",
"requests",
"wreq",
"curl_cffi",
"aiohttp",
"pycurl",
"uvicorn",
"starlette",
"typing_extensions",
"uvloop; platform_system != 'Windows'",
"ry",
]
[tool.ruff]
[tool.ruff.lint]
ignore = ["F403", "F405"]
[tool.pyright]
reportArgumentType = false