-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 2.63 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sanna"
version = "1.5.0"
description = "Trust infrastructure for AI agents — constitution enforcement, cryptographic receipts, MCP governance gateway"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.10"
authors = [{name = "nicallen-exd"}]
keywords = ["ai", "governance", "trust", "constitution", "receipts", "verification", "mcp", "agents", "cryptographic"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"jsonschema>=4.17",
"pyyaml>=6.0",
"cryptography>=41.0",
"filelock>=3.0",
]
[project.optional-dependencies]
mcp = ["mcp>=1.0"]
otel = ["opentelemetry-api>=1.20.0", "opentelemetry-sdk>=1.20.0"]
dev = ["pytest>=7.0", "hypothesis>=6.100", "jsonschema>=4.17", "pyyaml>=6.0"]
[project.scripts]
sanna-generate = "sanna.cli:main_generate"
sanna-verify = "sanna.cli:main_verify"
sanna-sign-constitution = "sanna.cli:main_sign_constitution"
sanna-keygen = "sanna.cli:main_keygen"
sanna-verify-constitution = "sanna.cli:main_verify_constitution"
sanna-mcp = "sanna.mcp.__main__:main"
sanna-create-bundle = "sanna.cli:main_create_bundle"
sanna-verify-bundle = "sanna.cli:main_verify_bundle"
sanna-drift-report = "sanna.cli:main_drift_report"
sanna-approve-constitution = "sanna.cli:approve_constitution_cmd"
sanna-diff = "sanna.cli:diff_cmd"
sanna-init = "sanna.init_constitution:main"
sanna-gateway = "sanna.gateway:main"
sanna-demo = "sanna.cli:main_demo"
sanna-inspect = "sanna.cli:main_inspect"
sanna-check-config = "sanna.cli:main_check_config"
sanna = "sanna.cli:main_sanna"
[project.urls]
Homepage = "https://sanna.dev"
Documentation = "https://sanna.dev/docs"
Repository = "https://github.com/sanna-ai/sanna"
Issues = "https://github.com/sanna-ai/sanna/issues"
Changelog = "https://github.com/sanna-ai/sanna/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
sanna = ["spec/*.json", "templates/*.yaml"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]