-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.6 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
[project]
name = "PlaywrightCapture"
version = "1.39.4"
description = "A simple library to capture websites using playwright"
authors = [
{name="Raphaël Vinot", email= "raphael.vinot@circl.lu"}
]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.10,<3.15"
dynamic = [ "classifiers" ]
dependencies = [
"playwright (>=1.58.0)",
"beautifulsoup4[charset-normalizer,lxml] (>=4.14.3)",
"w3lib (>=2.4.1)",
"playwright-stealth (>=2.0.3)",
"async-timeout (>=5.0.1) ; python_version < \"3.11\"",
"aiohttp[speedups] (>=3.13.5)",
"aiohttp-socks (>=0.11.0)",
"typing-extensions (>=4.12.2,<5.0.0) ; python_version < \"3.12\"",
"dnspython (>=2.7.0,<3.0.0)",
"python-socks (>=2.7.1,<3.0.0)",
"rfc3161-client (>=1.0.4,<2.0.0)",
"orjson (>=3.11.4,<4.0.0)",
"pure-magic-rs (>=0.3.2,<0.4.0)",
"lookyloo-models (>=0.2.2)",
"charset-normalizer (>=3.4.6,<4.0.0)"
]
[project.urls]
Repository = "https://github.com/Lookyloo/PlaywrightCapture"
Issues = "https://github.com/Lookyloo/PlaywrightCapture/issues"
[tool.poetry]
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Topic :: Security',
'Topic :: Internet',
]
[project.optional-dependencies]
recaptcha = [
"pydub-ng (>=0.2.0)",
"SpeechRecognition (>=3.16.0)"
]
[tool.poetry.group.dev.dependencies]
types-beautifulsoup4 = "^4.12.0.20250516"
pytest = "^9.0.3"
mypy = "^1.20.2"
types-dateparser = "^1.4.0.20260408"
types-pytz = "^2026.1.1.20260408"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"