-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.29 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
[project]
name = "PlaywrightCapture"
version = "1.27.5"
description = "A simple library to capture websites using playwright"
authors = [
{name="Raphaël Vinot", email= "[email protected]"}
]
license = "BSD-3-Clause"
repository = "https://github.com/Lookyloo/PlaywrightCapture"
readme = "README.md"
requires-python = ">=3.9"
dynamic = [ "classifiers" ]
dependencies = [
"playwright (>=1.49.1)",
"dateparser (>=1.2.0)",
"beautifulsoup4 [lxml,charset_normalizer] (>=4.12.3)",
"w3lib (>=2.2.1)",
"tzdata (>=2024.2)",
"playwright-stealth (>=1.0.6)",
"setuptools (>=75.7.0)",
"puremagic (>=1.28)",
"async-timeout (>=4.0.3) ; python_version < '3.11'",
"aiohttp [speedups] (>=3.11.11)",
"aiohttp-socks (>=0.10)"
]
[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.13.0)"]
[tool.poetry.group.dev.dependencies]
types-beautifulsoup4 = "^4.12.0.20241020"
pytest = "^8.3.4"
mypy = "^1.14.1"
types-dateparser = "^1.2.0.20240420"
types-pytz = "^2024.2.0.20241221"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"