Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a05e2e-805b-7042-a750-71f473bceea2
18 lines
457 B
TOML
18 lines
457 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"
|
|
dependencies = ["PyJWT[crypto]>=2.7,<3"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest"]
|
|
serve = ["waitress>=3,<4"]
|
|
|
|
[project.scripts]
|
|
approval-engine = "approval_engine.cli:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|