-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.38 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
56
57
[project]
name = "PlaywrightCapture"
version = "1.27.8"
description = "A simple library to capture websites using playwright"
authors = [
{name="Raphaël Vinot", email= "[email protected]"}
]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.9"
dynamic = [ "classifiers" ]
dependencies = [
"playwright (>=1.50.0)",
"dateparser (>=1.2.1)",
"beautifulsoup4[charset-normalizer,lxml] (>=4.13.3)",
"w3lib (>=2.3.1)",
"tzdata (>=2025.1)",
"playwright-stealth (>=1.0.6)",
"setuptools (>=75.8.0)",
"puremagic (>=1.28)",
"async-timeout (>=5.0.1) ; python_version < \"3.11\"",
"aiohttp[speedups] (>=3.11.12)",
"aiohttp-socks (>=0.10.1)"
]
[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 (>=0.25.1)",
"SpeechRecognition (>=3.14.1)"
]
[tool.poetry.group.dev.dependencies]
types-beautifulsoup4 = "^4.12.0.20250204"
pytest = "^8.3.4"
mypy = "^1.15.0"
types-dateparser = "^1.2.0.20240420"
types-pytz = "^2025.1.0.20250204"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"