This repository was archived by the owner on Mar 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.58 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-safety-middleware"
version = "0.1.0"
description = "One-line safety middleware for AI agent APIs. Prompt injection scanning, cost budgets, decision audit trails. Works with FastAPI, Flask, and any ASGI/WSGI framework."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{name = "LuciferForge", email = "LuciferForge@proton.me"},
]
keywords = [
"fastapi", "flask", "middleware", "ai-safety", "prompt-injection",
"llm", "cost-guard", "audit-trail", "agent-security", "asgi", "wsgi",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Framework :: FastAPI",
"Framework :: Flask",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"ai-injection-guard>=0.1.0",
"ai-cost-guard>=0.1.0",
"ai-decision-tracer>=0.1.0",
]
[project.optional-dependencies]
signed = ["cryptography>=41"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21"]
[project.urls]
Homepage = "https://github.com/LuciferForge/agent-safety-middleware"
Repository = "https://github.com/LuciferForge/agent-safety-middleware"
[tool.setuptools.packages.find]
include = ["agent_safety_middleware*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"