-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (89 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (89 loc) · 2.06 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
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "agentproof-ai"
version = "0.3.0"
description = "LLM-capability CAPTCHA and obfuscated verification challenges for Python applications."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Borislav", email = "bnovikov012@gmail.com" },
]
keywords = [
"llm",
"agent",
"captcha",
"obfuscation",
"verification",
"challenge-response",
"ai",
]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
"Topic :: Internet",
"Topic :: Security",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
dev = [
"build>=1.2.2",
"mypy>=1.15",
"pytest>=8.3",
"pytest-cov>=6.0",
"ruff>=0.11",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.6",
]
demo = [
"fastapi>=0.115",
"httpx>=0.28",
"uvicorn>=0.34",
]
[project.scripts]
agentproof = "agentproof.cli:main"
[project.urls]
Homepage = "https://github.com/bnovik0v/agentproof"
Documentation = "https://bnovik0v.github.io/agentproof/"
Issues = "https://github.com/bnovik0v/agentproof/issues"
Source = "https://github.com/bnovik0v/agentproof"
[tool.hatch.build.targets.wheel]
packages = ["src/agentproof"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "--strict-config --strict-markers --cov=agentproof --cov-fail-under=90 --cov-report=term-missing --cov-report=xml"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"B",
"UP",
"SIM",
"C4",
]
[tool.ruff.lint.per-file-ignores]
"demo/app.py" = ["E402", "I001"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unreachable = true
show_error_codes = true
packages = ["agentproof"]