-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.74 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "suy-sideguy"
version = "0.1.3"
description = "Runtime policy guard for autonomous AI agents with user-space enforcement and forensic reporting."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [{ name = "Rolando Bosch" }]
keywords = ["runtime-agent-guard", "ai-agent-security", "runtime-monitoring", "incident-response", "policy-enforcement", "forensics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: System :: Monitoring",
]
dependencies = [
"psutil>=5.9",
"PyYAML>=6.0",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6.0",
"mypy>=1.10",
"types-PyYAML>=6.0",
]
[project.scripts]
suy-warden = "suy_sideguy.warden:entrypoint"
suy-forensic-report = "suy_sideguy.forensic_report:main"
[project.urls]
Homepage = "https://github.com/roli-lpci/suy-sideguy"
Repository = "https://github.com/roli-lpci/suy-sideguy"
Documentation = "https://github.com/roli-lpci/suy-sideguy#readme"
Issues = "https://github.com/roli-lpci/suy-sideguy/issues"
Changelog = "https://github.com/roli-lpci/suy-sideguy/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["suy_sideguy"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.mypy]
python_version = "3.9"
files = ["suy_sideguy"]
ignore_missing_imports = true
warn_unused_ignores = true