This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (79 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
90 lines (79 loc) · 2.37 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sentinel-llm-security"
version = "5.0.0"
description = "SENTINEL — AI Security Platform. 49 Rust Engines + Micro-Model Swarm. Defense, Offense, Framework."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
keywords = [
"ai-security",
"llm-security",
"prompt-injection",
"jailbreak-detection",
"red-team",
"penetration-testing",
"guardrails",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = ["pydantic>=2.0", "aiohttp>=3.8"]
[project.optional-dependencies]
cli = ["click>=8.0", "rich>=13.0"]
ml = ["torch>=2.0", "transformers>=4.30", "sentence-transformers>=2.2"]
plugins = ["pluggy>=1.0"]
full = ["sentinel-llm-security[cli,ml,plugins]"]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"black>=23.0",
"flake8>=6.0",
"mypy>=1.0",
]
[project.scripts]
sentinel = "sentinel.cli.main:main"
[project.entry-points."sentinel.plugins"]
builtin = "sentinel.engines:BuiltinPlugin"
[project.urls]
Homepage = "https://github.com/DmitrL-dev/AISecurity"
Documentation = "https://dmitrl-dev.github.io/AISecurity/"
Repository = "https://github.com/DmitrL-dev/AISecurity"
Issues = "https://github.com/DmitrL-dev/AISecurity/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/sentinel", "micro-swarm/micro_swarm"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/micro-swarm/micro_swarm",
"/tests",
"/README.md",
"/LICENSE",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = ["src"]
[tool.black]
line-length = 88
target-version = ['py39']
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true