Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a07ff8-19d0-7820-b4d0-1353833cb7fc
22 lines
573 B
TOML
22 lines
573 B
TOML
[project]
|
|
name = "informed-decision"
|
|
version = "0.2.0"
|
|
description = "Presentation and binding surface for decisions — the Decision Memo and its evidence."
|
|
requires-python = ">=3.11"
|
|
dependencies = ["PyJWT[crypto]>=2.10,<3", "waitress>=3,<4"]
|
|
|
|
[project.scripts]
|
|
informed-decision-web = "informed_decision.web:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8", "PyYAML>=6,<7"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["informed_decision"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|