-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (102 loc) · 2.79 KB
/
pyproject.toml
File metadata and controls
111 lines (102 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[project]
name = "chuscraper"
dynamic = ["version"]
description = "A blazing fast, async-first, undetectable web and mobile automation framework powered by CDP and ADB"
readme = "README.md"
authors = [{ name = "Toufiq Qureshi", email = "toufiq@neurofiq.in" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
config = { }
requires-python = ">=3.10"
dependencies = [
"asyncio-atexit>=1.0.1",
"deprecated>=1.2.14",
"emoji>=2.14.1",
"grapheme>=0.6.0",
"mss>=9.0.2",
"websockets>=14.0",
"pydantic>=2.0.0",
"html2text>=2024.2.26",
"beautifulsoup4>=4.12.0",
"psutil>=7.1.0",
"lxml>=5.0.0",
"browserforge>=1.1.0",
"curl_cffi>=0.7.0",
"playwright>=1.49.0",
"orjson>=3.10.0",
"cssselect>=1.2.0",
"msgspec>=0.18.0",
"tld>=0.13.0",
"markdownify>=0.13.0",
"w3lib>=2.1.2",
"typing-extensions>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/ToufiqQureshi/chuscraper"
Repository = "https://github.com/ToufiqQureshi/chuscraper"
Issues = "https://github.com/ToufiqQureshi/chuscraper/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mkdocs-material>=9.5.42",
"mkdocstrings[python]>=0.26.2",
"mypy>=1.12.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.1.1",
"pytest-xdist>=3.6.1",
"pytest>=8.3.3",
"pyyaml>=6.0.2",
"ruff>=0.7.4",
"types-pyyaml>=6.0.12.20240917",
"types-requests>=2.32.0.20241016",
"pytest-mock>=3.14.0",
"types-deprecated>=1.2.15.20241117",
"inflection>=0.5.1",
"types-psutil>=7.0.0.20251001",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
log_level = "INFO"
[tool.ruff]
exclude = ["chuscraper/cdp"]
[tool.ruff.lint]
exclude = [
"examples/demo.py",
"examples/fetch_domain.py",
"examples/imgur_upload_image.py",
"examples/mouse_drag_boxes.py",
]
[tool.mypy]
exclude = [
"chuscraper/cdp",
"examples/demo.py",
"examples/fetch_domain.py",
"examples/imgur_upload_image.py",
"examples/mouse_drag_boxes.py",
"examples/network_monitor.py",
"examples/wait_for_page.py",
"examples/set_user_agent.py",
"examples/expect_download.py",
]
strict = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"asyncio_atexit",
]
ignore_missing_imports = true
[tool.hatch.version]
path = "chuscraper/_version.py"