Phase 1 (Foundation): - Project restructure (presenton-main → backend/ + frontend/) - Database schema (8 new models, Alembic config, seed script) - Auth (Azure AD SSO + dev bypass, JWT sessions, AuthMiddleware) - RBAC (access_service, rbac_middleware, admin routers) - Audit logging (fire-and-forget, AuditMiddleware, admin router) - i18n (react-i18next with 5 namespace files) Phase 2 (Admin Panel & Client Management): - Admin panel shell (sidebar layout, role guard, 12 pages) - Redux admin slice with 18 async thunks - User management (role changes, deactivation) - Client management (CRUD, brand config, team management) - Brand config editor (colors, fonts, logos, voice rules) - Master deck upload & parser (PPTX → HTML → React pipeline) - Audit log viewer with filters and CSV/JSON export Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
914 B
TOML
36 lines
914 B
TOML
[project]
|
|
name = "presenton-backend"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
requires-python = ">=3.11,<3.12"
|
|
dependencies = [
|
|
"aiohttp>=3.12.15",
|
|
"aiomysql>=0.2.0",
|
|
"aiosqlite>=0.21.0",
|
|
"anthropic>=0.60.0",
|
|
"asyncpg>=0.30.0",
|
|
"chromadb>=1.0.15",
|
|
"dirtyjson>=1.0.8",
|
|
"docling>=2.43.0",
|
|
"fastapi[standard]>=0.116.1",
|
|
"fastmcp>=2.11.0",
|
|
"google-genai>=1.28.0",
|
|
"nltk>=3.9.1",
|
|
"openai>=1.98.0",
|
|
"pathvalidate>=3.3.1",
|
|
"pdfplumber>=0.11.7",
|
|
"pytest>=8.4.1",
|
|
"python-pptx>=1.0.2",
|
|
"redis>=6.2.0",
|
|
"sqlmodel>=0.0.24",
|
|
"alembic>=1.15",
|
|
"msal>=1.31",
|
|
"python-jose[cryptography]>=3.3",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://download.pytorch.org/whl/cpu"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["api*", "enums*", "models*", "services*", "constants*", "utils*", "scripts*", "workers*", "migrations*"]
|