-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (104 loc) · 2.89 KB
/
pyproject.toml
File metadata and controls
115 lines (104 loc) · 2.89 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentsec-ai"
version = "0.5.0"
description = "Security scanner for AI agents and MCP servers. OWASP Agentic Top 10 mapping, SARIF output, CI/CD ready."
readme = {file = "README.md", content-type = "text/markdown"}
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Debu Sinha", email = "debusinha2009@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software 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",
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Systems Administration",
"Typing :: Typed",
]
keywords = [
"security",
"agentic-ai",
"ai-agent",
"openclaw",
"mcp",
"model-context-protocol",
"vulnerability-scanner",
"owasp",
"ai-security",
"sast",
"credential-scanner",
"secret-detection",
"sarif",
"supply-chain-security",
"claude-code",
"llm-security",
]
dependencies = [
"click>=8.1,<9",
"rich>=13.0,<14",
"pydantic>=2.0,<3",
"pyyaml>=6.0,<7",
"tomli>=2.0,<3; python_version < '3.11'",
"detect-secrets>=1.4,<2",
]
[project.optional-dependencies]
yara = ["yara-python>=4.5,<5"]
full = [
"yara-python>=4.5,<5",
"keyring>=25.0,<26",
]
test = [
"pytest>=8.0,<9",
"pytest-cov>=5.0,<6",
]
dev = [
"agentsec-ai[test]",
"ruff>=0.4,<1",
"mypy>=1.10,<2",
"pre-commit>=3.7,<4",
"pip-audit>=2.7,<3",
]
[project.scripts]
agentsec = "agentsec.cli:main"
[project.urls]
Homepage = "https://github.com/debu-sinha/agentsec"
Documentation = "https://github.com/debu-sinha/agentsec#readme"
Repository = "https://github.com/debu-sinha/agentsec"
Issues = "https://github.com/debu-sinha/agentsec/issues"
Changelog = "https://github.com/debu-sinha/agentsec/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/agentsec"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "S", "B", "A", "C4", "SIM", "TCH"]
ignore = ["S101", "S603", "S607", "S104", "S105", "TC001", "TC003"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S108", "S103", "S105", "S106"]
[tool.ruff.lint.isort]
known-first-party = ["agentsec"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-v --tb=short"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
packages = ["agentsec"]
mypy_path = "src"