20 lines
458 B
TOML
20 lines
458 B
TOML
[project]
|
|
name = "m2-ledger"
|
|
version = "0.1.0"
|
|
description = "M2 credits ledger — append-only transactions, derived balances (contracts/ledger-api.md)"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn>=0.30",
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8", "hypothesis>=6"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/m2_ledger"]
|