20 lines
443 B
TOML
20 lines
443 B
TOML
|
|
[project]
|
||
|
|
name = "informed-decision"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Presentation and binding surface for decisions — the Decision Memo and its evidence."
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = []
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = ["pytest>=8"]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[tool.setuptools]
|
||
|
|
packages = ["informed_decision"]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|