Issue 1: repo scaffold and project structure

This commit is contained in:
Johnny 5
2026-06-07 19:20:02 +00:00
parent e0b31009b7
commit a70bdeaa5e
52 changed files with 6750 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[project]
name = "ten31portal"
version = "0.1.0"
description = "Internal system of record for Ten31 entities, holdings, and valuations."
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.12",
"uvicorn[standard]==0.34.3",
"sqlmodel==0.0.24",
"alembic==1.15.2",
"argon2-cffi==23.1.0",
"python-multipart==0.0.20",
"itsdangerous==2.2.0",
"aiosqlite==0.21.0",
"starlette-session==0.4.3",
]
[project.scripts]
ten31portal = "ten31portal.main:cli"
ten31portal-cli = "ten31portal.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"