-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 776 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 776 Bytes
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
[project]
name = "promptguard"
version = "0.4.2"
description = "Agent-native prompt contract auditor and pre-write guard."
requires-python = ">=3.10"
dependencies = []
readme = "README.md"
license = "MIT"
keywords = ["prompt", "llm", "agents", "codex", "claude", "guardrails"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"Topic :: Software Development :: Quality Assurance",
]
[project.scripts]
promptguard = "promptguard.cli:main"
[project.optional-dependencies]
dev = ["pytest>=8", "build>=1"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.package-data]
promptguard = ["rules.json", "packs/*.json"]
[tool.setuptools.packages.find]
include = ["promptguard*"]