-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.63 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentsniff"
version = "1.3.0"
description = "AI Agent Network Scanner - Detect AI agents on your network"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
authors = [
{name = "Jascha Wanger / ThirdKey AI"},
]
keywords = ["ai", "agent", "security", "scanner", "network", "mcp", "agentpin"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: System :: Networking :: Monitoring",
]
dependencies = [
"aiohttp>=3.9",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"pyyaml>=6.0",
"sarif-om>=1.0.4",
"jschema-to-python>=1.2.3",
]
[project.optional-dependencies]
nmap = ["python-nmap>=0.7"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.3",
]
[project.scripts]
agentsniff = "agentsniff.cli:main"
[project.urls]
Homepage = "https://agentsniff.org"
Documentation = "https://docs.agentsniff.org"
Repository = "https://github.com/ThirdKeyAI/agentsniff"
Issues = "https://github.com/ThirdKeyAI/agentsniff/issues"
[tool.setuptools.packages.find]
include = ["agentsniff*"]
[tool.setuptools.package-data]
agentsniff = ["dashboard/*.html", "signatures/*.json", "signatures/*.sig", "signatures/*.pub"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"