-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (40 loc) · 1.4 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aae"
version = "0.1.0"
description = "Assured Agent Execution — deterministic governance and controlled execution for probabilistic AI agents"
readme = "README.md"
license = "BUSL-1.1"
license-files = ["LICENSE", "LICENSING.md", "COMMERCIAL_LICENSE.md", "NOTICE"]
authors = [{ name = "Stian Skogbrott", email = "support@luftfiber.no" }]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
# remora is NOT declared here, deliberately.
#
# It is not installed from an index; it is installed from the exact wheel
# named and hash-verified in product/core-artifact-lock.json. A dependency
# line saying `remora>=0.10` would let pip resolve a different build than the
# one this product pinned — which is precisely the drift the lock exists to
# prevent. See README "Install".
dependencies = [
"httpx>=0.25", # the SDK's transport
"psycopg[binary]>=3.1", # the work-order system of record
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
aae = "aae.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/aae", "toolpacks"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: destroys and restores live state; minutes, not seconds",
]