pre-push commit

This commit is contained in:
Peter van Arkel
2025-11-20 14:40:42 +01:00
parent 3001e5cffd
commit 644b207997
43 changed files with 1681 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
Metadata-Version: 2.4
Name: battleflow
Version: 0.1.0
Summary: Battleflow — OBS-friendly initiative board for tabletop encounters
Author: Aetryos Workshop
Requires-Python: >=3.9
Requires-Dist: flask>=3.0.0
Requires-Dist: werkzeug>=3.0.0

View File

@@ -0,0 +1,20 @@
README.md
pyproject.toml
battleflow/__init__.py
battleflow/cli.py
battleflow/config.py
battleflow/models.py
battleflow/security.py
battleflow/state.py
battleflow/storage.py
battleflow.egg-info/PKG-INFO
battleflow.egg-info/SOURCES.txt
battleflow.egg-info/dependency_links.txt
battleflow.egg-info/entry_points.txt
battleflow.egg-info/requires.txt
battleflow.egg-info/top_level.txt
battleflow/routes/__init__.py
battleflow/routes/admin.py
battleflow/routes/api.py
battleflow/routes/board.py
tests/test_api_basic.py

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,2 @@
[console_scripts]
battleflow = battleflow.cli:main

View File

@@ -0,0 +1,2 @@
flask>=3.0.0
werkzeug>=3.0.0

View File

@@ -0,0 +1 @@
battleflow