2025-11-20 14:40:42 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
2025-11-20 16:55:03 +01:00
|
|
|
name = "encounterflow"
|
2025-11-20 14:40:42 +01:00
|
|
|
version = "0.1.0"
|
2025-11-20 16:55:03 +01:00
|
|
|
description = "EncounterFlow"
|
2025-11-20 14:40:42 +01:00
|
|
|
authors = [{name="Aetryos Workshop"}]
|
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"flask>=3.0.0",
|
|
|
|
|
"werkzeug>=3.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
2025-11-20 16:55:03 +01:00
|
|
|
encounterflow = "encounterflow.cli:main"
|