-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sentinel-guardrails"
version = "0.86.0"
description = "Real-time AI safety guardrails: prompt injection detection, PII redaction, harmful content filtering, and hallucination scoring for LLM applications."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [{ name = "Sentinel AI" }]
keywords = ["ai-safety", "llm", "guardrails", "prompt-injection", "pii-detection"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
dependencies = [
"regex>=2023.0",
]
[project.optional-dependencies]
api = ["fastapi>=0.100", "uvicorn>=0.20"]
ml = ["torch>=2.0", "transformers>=4.30"]
langchain = ["langchain-core>=0.1"]
llamaindex = ["llama-index-core>=0.10"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21", "httpx>=0.24"]
[project.scripts]
sentinel = "sentinel.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["sentinel"]
[project.urls]
Homepage = "https://github.com/MaxwellCalkin/sentinel-ai"
Repository = "https://github.com/MaxwellCalkin/sentinel-ai"
Issues = "https://github.com/MaxwellCalkin/sentinel-ai/issues"