feat(validation): complete validation editor and master data modules
This commit is contained in:
parent
2b5c765e41
commit
f73a24df13
73 changed files with 10194 additions and 0 deletions
33
validation-suite/backend/mercury/pyproject.toml
Normal file
33
validation-suite/backend/mercury/pyproject.toml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
[project]
|
||||
name = "mercury"
|
||||
version = "0.1.0"
|
||||
description = "Validation Suite backend"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"alembic==1.16.4",
|
||||
"bcrypt==4.3.0",
|
||||
"fastapi==0.116.1",
|
||||
"gunicorn==23.0.0",
|
||||
"psycopg[binary]==3.2.9",
|
||||
"pydantic-settings==2.10.1",
|
||||
"pydantic[email]==2.11.7",
|
||||
"python-jose[cryptography]==3.5.0",
|
||||
"python-multipart==0.0.20",
|
||||
"sqlalchemy==2.0.41",
|
||||
"uvicorn[standard]==0.35.0",
|
||||
"weasyprint==62.3"
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = ["black==25.1.0", "isort==6.0.1", "ruff==0.12.4"]
|
||||
|
||||
[tool.black]
|
||||
line-length = 100
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 100
|
||||
target-version = "py312"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue