-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 1.64 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
[project]
name = "prism-scanner"
version = "0.2.2"
description = "Security scanner for AI Agent skills, plugins, and MCP servers"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "Lyra", email = "249893431+aidongise-cell@users.noreply.github.com"},
]
keywords = ["security", "scanner", "ai-agent", "skill", "plugin", "mcp", "supply-chain", "static-analysis"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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 :: Security",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
dependencies = ["pyyaml>=6.0", "rich>=13.0"]
[project.optional-dependencies]
mcp = ["mcp>=1.0.0"]
[project.urls]
Homepage = "https://github.com/aidongise-cell/prism-scanner"
Repository = "https://github.com/aidongise-cell/prism-scanner"
Issues = "https://github.com/aidongise-cell/prism-scanner/issues"
Changelog = "https://github.com/aidongise-cell/prism-scanner/blob/main/CHANGELOG.md"
[project.scripts]
prism = "prism.cli:main"
prism-mcp = "prism.mcp_server:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
prism = ["rules/*.yaml"]