23 lines
475 B
TOML
23 lines
475 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "discussion-framework"
|
|
version = "0.1.0"
|
|
description = "Deterministic CLI for managing discussion-framework workflow state."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
authors = [
|
|
{ name = "Prometeu" }
|
|
]
|
|
|
|
[project.scripts]
|
|
discussion = "discussion_framework.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|