-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (100 loc) · 2.62 KB
/
pyproject.toml
File metadata and controls
111 lines (100 loc) · 2.62 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qp-capsule"
version = "1.5.1"
description = "Capsule Protocol Specification (CPS) — tamper-evident audit records for AI operations. Create, seal, verify, and chain Capsules in Python."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "Quantum Pipes Technologies, LLC" }
]
keywords = [
"ai",
"audit-trail",
"capsules",
"cps",
"cryptography",
"ed25519",
"sha3",
"tamper-evident",
"trustworthy-ai",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"pynacl>=1.6.2",
]
[project.optional-dependencies]
storage = [
"sqlalchemy>=2.0.48",
"aiosqlite>=0.22.1",
]
postgres = [
"sqlalchemy>=2.0.48",
"asyncpg>=0.31.0",
]
pq = [
"liboqs-python>=0.14.1",
]
fastapi = [
"fastapi>=0.135.1",
]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
"mypy>=1.19.1",
"httpx>=0.28.1",
]
[project.scripts]
capsule = "qp_capsule.cli:_entry"
[project.urls]
Homepage = "https://github.com/quantumpipes/capsule"
Documentation = "https://github.com/quantumpipes/capsule/tree/main/reference/python/docs"
Repository = "https://github.com/quantumpipes/capsule"
Changelog = "https://github.com/quantumpipes/capsule/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/quantumpipes/capsule/issues"
"CPS Specification" = "https://github.com/quantumpipes/capsule/tree/main/spec"
[tool.hatch.build.targets.wheel]
packages = ["src/qp_capsule"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = ["error"]
[tool.coverage.run]
source = ["qp_capsule"]
[tool.coverage.report]
fail_under = 100
show_missing = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"\\.\\.\\.",
]