-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
141 lines (127 loc) · 3.53 KB
/
pyproject.toml
File metadata and controls
141 lines (127 loc) · 3.53 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# ============================================================================
# SentinelAI - AI Security & Monitoring Platform
# Copyright (c) 2026 threatvec & talkdedsec. All rights reserved.
# https://github.com/threatvec/SentinelAI
# ============================================================================
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sentinelai"
version = "1.0.0"
description = "AI Security & Monitoring Platform - Protect your AI agents, scan AI-generated code, and firewall LLM interactions."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
authors = [
{name = "threatvec & talkdedsec", email = "threatvec@proton.me"},
]
maintainers = [
{name = "threatvec & talkdedsec", email = "threatvec@proton.me"},
]
keywords = [
"security",
"ai-security",
"llm-firewall",
"prompt-injection",
"code-scanner",
"vulnerability-scanner",
"agent-monitor",
"cybersecurity",
"owasp",
"secret-detection",
"pii-detection",
"ai-agent-security",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Typing :: Typed",
]
dependencies = [
"click>=8.1.0",
"rich>=13.0.0",
"pyyaml>=6.0",
"pydantic>=2.0.0",
"fastapi>=0.110.0",
"uvicorn>=0.29.0",
"jinja2>=3.1.0",
"aiofiles>=23.0.0",
"httpx>=0.27.0",
"watchdog>=4.0.0",
"cryptography>=42.0.0",
"python-multipart>=0.0.9",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
"pre-commit>=3.7.0",
]
langchain = [
"langchain>=0.2.0",
"langchain-core>=0.2.0",
]
crewai = [
"crewai>=0.30.0",
]
all = [
"sentinelai[dev,langchain,crewai]",
]
[project.urls]
Homepage = "https://github.com/threatvec/SentinelAI"
Documentation = "https://github.com/threatvec/SentinelAI/tree/main/docs"
Repository = "https://github.com/threatvec/SentinelAI"
Issues = "https://github.com/threatvec/SentinelAI/issues"
Changelog = "https://github.com/threatvec/SentinelAI/blob/main/CHANGELOG.md"
[project.scripts]
sentinelai = "sentinelai.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
sentinelai = [
"dashboard/templates/*.html",
"dashboard/static/css/*.css",
"dashboard/static/js/*.js",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "S", "B", "A", "C4", "SIM"]
ignore = ["S101", "S603", "S607"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
addopts = "-v --tb=short --strict-markers"
markers = [
"slow: marks tests as slow",
"integration: marks integration tests",
]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.coverage.run]
source = ["src/sentinelai"]
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true
fail_under = 80