-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
55 lines (52 loc) · 1.43 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
51
52
53
54
55
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "hrequests"
version = "0.9.2"
description = "Hrequests (human requests) is a simple, configurable, feature-rich, replacement for the Python requests library."
authors = ["daijro <daijro.dev@gmail.com>"]
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"
browserforge = "1.1.2"
ua_parser = "*"
orjson = "*"
httpx = "*"
geventhttpclient = "*"
urllib3 = "*"
typing-extensions = "*"
rich = "*"
rich-click = "*"
async-class = "*"
aioprocessing = "*"
numpy = "*"
parse = "*"
selectolax = "*"
faust-cchardet = "*"
zstandard = "*"
camoufox = { version = "^0.3.9", optional = true, extras = ["geoip"] }
patchright = { version = "*", optional = true }
playwright = { version = "*", optional = true }
msvc-runtime = { version = "*", markers = "sys_platform == 'win32' and python_version < '3.13'" }
[tool.poetry.extras]
all = ["camoufox", "patchright", "playwright"]
firefox = ["camoufox", "playwright"]
chrome = ["patchright"]