-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.66 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dfx-agentguard"
version = "0.5.3"
description = "Autonomous security scanner for AI agents. Detects prompt injection, tool abuse, data exfiltration, and OWASP ASI Top 10 vulnerabilities."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [{name = "Dockfix Labs", email = "security@dockfixlabs.dev"}]
keywords = ["ai-security", "agent-security", "owasp-asi", "prompt-injection", "mcp", "static-analysis", "llm-security"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"click>=8.1",
"rich>=13.0",
"pydantic>=2.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov", "ruff"]
mcp = ["mcp>=0.9"]
[project.scripts]
agentguard = "agentguard.cli:main"
[project.urls]
Homepage = "https://github.com/dockfixlabs/agentguard"
Documentation = "https://github.com/dockfixlabs/agentguard#readme"
Issues = "https://github.com/dockfixlabs/agentguard/issues"
"Security Policy" = "https://github.com/dockfixlabs/agentguard/blob/main/SECURITY.md"
[tool.setuptools.packages.find]
where = ["."]
[tool.ruff]
line-length = 100
target-version = "py310"