-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (70 loc) · 1.61 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hcaptcha-python"
version = "1.0.0"
description = "A simple Python client to validate hCaptcha tokens."
authors = [
{ name = "Federico Cardozo", email = "[email protected]" }
]
maintainers = [
{ name = "Federico Cardozo", email = "[email protected]" }
]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.24.0",
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["hcaptcha", "captcha", "siteverify", "security"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Async Support",
"Topic :: Security",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/hCaptcha/hcaptcha-python"
Repository = "https://github.com/hCaptcha/hcaptcha-python"
[project.optional-dependencies]
test = [
"build>=1.2",
"mypy>=1.14",
"pytest>=7",
"pytest-asyncio>=0.21",
"ruff==0.16.5",
"respx>=0.20",
"twine>=6",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 88
extend-exclude = [".venv"]
preview = true
[tool.ruff.lint]
select = [
"ASYNC",
"B",
"BLE",
"C4",
"E",
"F",
"I",
"PIE",
"PT",
"RET",
"RUF",
"S",
"SIM",
"UP",
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["assert", "hardcoded-password-string"]