-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plannerHacker"
version = "0.0.1"
authors = [
{ name = "Aditya Pandey"}, email="@gmail.com" },
]
license = { file = "LICENSE" }
description = "MCPSafetyScanner"
readme = "README.md"
classifiers = [
"Development Status :: 1 - Alpha",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: MPL-2.0 License",
]
requires-python = ">=3.11"
dependencies = [
"agno",
"pyfiglet",
"rich",
"mcp",
"beautifulsoup4",
"sqlalchemy",
"pgvector",
"duckduckgo-search",
"arxiv",
"pypdf",
"openai"
]
[project.scripts]
mcp_safety_scan = "mcpsafety.scanner.scan:main"
[tool.setuptools]
packages = ["mcpsafety"]
[tool.setuptools.package-data]
"mcpsafety.resources" = ["*"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore",
"default:::mcpsafety",
]
[tool.coverage.run]
source = ["./mcpsafety"]
omit = ["tests/*"]