-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.71 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "python-anticaptcha"
description = "Client library for solve captchas with Anticaptcha.com support."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = ["requests"]
dynamic = ["version"]
keywords = ["recaptcha", "captcha", "development", "asyncio", "async", "httpx"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
"Programming Language :: Python :: 3.14",
"Framework :: AsyncIO",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
Homepage = "https://github.com/ad-m/python-anticaptcha"
[project.optional-dependencies]
async = ["httpx>=0.24"]
tests = ["pytest", "pytest-asyncio", "httpx>=0.24", "retry", "selenium"]
docs = ["sphinx", "sphinx-rtd-theme"]
[tool.hatch.version]
source = "vcs"
fallback-version = "0.0.0"
[tool.hatch.build.targets.wheel]
packages = ["python_anticaptcha"]
[tool.ruff]
target-version = "py39"
line-length = 120
extend-exclude = ["examples"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.9"
warn_unused_configs = true
disallow_untyped_defs = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = "requests.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"e2e: end-to-end tests requiring API keys and network access",
]
addopts = "-m 'not e2e'"