-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (66 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
69 lines (66 loc) · 1.99 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
[project]
name = "twocaptcha-python"
version = "0.0.4"
description = "Python client for 2captcha solving service - Bypass reCAPTCHA, Cloudflare Turnstile, FunCaptcha, GeeTest and solve any other captchas"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Sujit Biswas", email = "ssujitxx@gmail.com"}
]
maintainers = [
{name = "Sujit Biswas", email = "ssujitxx@gmail.com"}
]
keywords = [
"2captcha",
"2captcha api",
"2captcha api python",
"2captcha api python client",
"twocaptcha",
"captcha solver",
"captcha bypass",
"python",
"api",
"client",
"automation",
"recaptcha",
"recaptcha bypass",
"cloudflare turnstile",
"funcaptcha",
"geetest",
"hcaptcha",
"image-captcha",
"text-captcha",
"captcha solving service"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: System :: Networking",
]
dependencies = [
"httpx>=0.28.1",
"rich>=14.2.0",
]
[project.urls]
Homepage = "https://github.com/SSujitX/twocaptcha-python"
Repository = "https://github.com/SSujitX/twocaptcha-python"
Documentation = "https://github.com/SSujitX/twocaptcha-python#readme"
Issues = "https://github.com/SSujitX/twocaptcha-python/issues"
"Bug Tracker" = "https://github.com/SSujitX/twocaptcha-python/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["TwoCaptcha"]