Initial Commit

slip slop
This commit is contained in:
Ian Keane 2026-06-09 15:07:08 -04:00
commit 064e672ab7
61 changed files with 3504 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[project]
name = "repertory-api"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"flask>=3.0",
"flask-sqlalchemy>=3.1",
"flask-cors>=4.0",
"sqlalchemy>=2.0",
"psycopg2-binary>=2.9",
"python-dotenv>=1.0",
"alembic>=1.13",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-flask>=1.3",
]