-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.45 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
[tool.poetry]
name = "PlaywrightCapture"
version = "1.23.6"
description = "A simple library to capture websites using playwright"
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "BSD-3-Clause"
repository = "https://github.com/Lookyloo/PlaywrightCapture"
readme = "README.md"
classifiers=[
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
]
[tool.poetry.dependencies]
python = "^3.8"
playwright = "^1.41.2"
dateparser = "^1.2.0"
beautifulsoup4 = {version= "^4.12.3", extras = ["lxml", "charset_normalizer"]}
w3lib = "^2.1.2"
requests = {extras = ["socks"], version = "^2.31.0"}
pydub = {version = "^0.25.1", optional = true}
SpeechRecognition = {version = "^3.10.1", optional = true}
pytz = {"version" = "^2024.1", python = "<3.9"}
tzdata = "^2024.1"
playwright-stealth = "^1.0.6"
setuptools = "^69.1.1"
puremagic = "^1.20"
[tool.poetry.extras]
recaptcha = ["requests", "pydub", "SpeechRecognition"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
types-beautifulsoup4 = "^4.12.0.20240106"
pytest = "^8.0.1"
mypy = "^1.8.0"
types-dateparser = "^1.1.4.20240106"
types-requests = "^2.31.0.20240218"
types-pytz = "^2024.1.0.20240203"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"