-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.53 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
[project]
name = "selenium-captcha-processing"
version = "1.0.2"
description = "A Python package for detecting and solving various captchas in Selenium-based web automation, supporting reCAPTCHA, Cloudflare Turnstile, and more."
authors = [{ name = "FINWAX", email = "waxbid@gmail.com" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"speechrecognition>=3.14.3,<4.0.0",
"requests>=2.32.4,<3.0.0",
"selenium>=4.33.0,<5.0.0",
"pydub>=0.25.1,<0.26.0",
"selmate (>=1.1.0,<2.0.0)"
]
keywords = [
"captcha",
"selenium",
"web-automation",
"recaptcha",
"cloudflare-turnstile",
"geetest",
"speech-recognition",
"bypass-captcha"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/FINWAX/selenium-captcha-processing.py"
Repository = "https://github.com/FINWAX/selenium-captcha-processing.py"
[tool.poetry]
[tool.poetry.group.dev.dependencies]
docker-chrome-session-manager = "^1.0.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"