17 lines
389 B
TOML
17 lines
389 B
TOML
|
|
[project]
|
||
|
|
name = "approval-engine"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "PIP for the approval object: durable, authenticated, consumable, atomically supersedable."
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = ["pytest"]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
approval-engine = "approval_engine.cli:main"
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|
||
|
|
pythonpath = ["."]
|