-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (83 loc) · 2.4 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (83 loc) · 2.4 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "capskip"
version = "1.1.0"
description = "Captcha solver for Python: solve reCAPTCHA v2/v3, Cloudflare Turnstile, GeeTest and image captchas with CapSkip, a local unlimited captcha solver with no per-solve fees."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "CapSkip", email = "support@capskip.com" }]
keywords = [
"captcha",
"captcha-solver",
"captcha-solving",
"captcha-bypass",
"unlimited-captcha-solver",
"local-captcha-solver",
"free-captcha-solver",
"recaptcha",
"recaptcha-solver",
"recaptcha-v2",
"recaptcha-v3",
"recaptcha-enterprise",
"cloudflare",
"turnstile",
"turnstile-solver",
"cloudflare-turnstile",
"geetest",
"geetest-solver",
"image-captcha",
"ocr",
"2captcha-alternative",
"anti-captcha-alternative",
"selenium",
"playwright",
"scrapy",
"browser-automation",
"web-scraping",
"capskip",
"automation",
]
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",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"requests>=2.28",
"httpx>=0.24",
"aiofiles>=23.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
]
[project.urls]
Homepage = "https://capskip.com"
Documentation = "https://github.com/capskip/capskip-python/blob/main/docs/GETTING_STARTED.md"
Repository = "https://github.com/capskip/capskip-python"
"Bug Tracker" = "https://github.com/capskip/capskip-python/issues"
Changelog = "https://github.com/capskip/capskip-python/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["capskip*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.coverage.run]
source = ["capskip"]
omit = ["tests/*", "examples/*"]