-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
50 lines (47 loc) · 1.3 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "hrequests"
version = "0.8.2"
description = "Hrequests (human requests) is a simple, configurable, feature-rich, replacement for the Python requests library."
authors = ["daijro <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/daijro/hrequests"
documentation = "https://daijro.gitbook.io/hrequests/"
keywords = [
"tls",
"client",
"http",
"scraping",
"requests",
"humans",
"playwright",
]
classifiers = [
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
orjson = "*"
httpx = "*"
geventhttpclient = "*"
urllib3 = "*"
playwright = { version = "1.40.0", optional = true }
playwright-stealth = { version = "*", optional = true }
rich = "*"
click = "*"
async-class = "*"
aioprocessing = "*"
numpy = "*"
pycryptodome = { version = "*", optional = true }
parse = "*"
selectolax = "*"
gevent = "*"
faust-cchardet = "*"
msvc-runtime = { version = "*", markers = "sys_platform == 'win32' and python_version < '3.12'" }
[tool.poetry.extras]
all = ["playwright", "playwright-stealth", "pycryptodome"]