25 lines
603 B
TOML
25 lines
603 B
TOML
[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"
|