mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-23 05:30:54 +00:00
72 lines
1.8 KiB
TOML
72 lines
1.8 KiB
TOML
[project]
|
|
name = "fastapi_best_architecture"
|
|
version = "0.0.1"
|
|
description = """
|
|
FastAPI based on the construction of the front and back end separation of RBAC privilege control system,
|
|
using a unique pseudo three-tier architecture model design, built-in fastapi-admin basic implementation,
|
|
and as a template library free open source.
|
|
"""
|
|
authors = [
|
|
{ name = "Wu Clan", email = "jianhengwu0407@gmail.com" },
|
|
]
|
|
dependencies = [
|
|
"alembic>=1.13.0",
|
|
"asgiref>=3.8.0",
|
|
"asyncmy==0.2.9",
|
|
"bcrypt==4.0.1",
|
|
"casbin==1.34.0",
|
|
"casbin_async_sqlalchemy_adapter==1.4.0",
|
|
"celery==5.3.6",
|
|
"cryptography==41.0.7",
|
|
"fast-captcha==0.3.2",
|
|
"fastapi[all]==0.111.0",
|
|
"fastapi-limiter==0.1.6",
|
|
"fastapi-pagination==0.12.13",
|
|
"gunicorn==21.2.0",
|
|
"httpx==0.25.2",
|
|
"itsdangerous==2.1.2",
|
|
"loguru==0.7.2",
|
|
"msgspec==0.18.5",
|
|
"passlib==1.7.4",
|
|
"path==15.1.2",
|
|
"phonenumbers==8.13.27",
|
|
"pre-commit==3.2.2",
|
|
"psutil==5.9.6",
|
|
"pydantic==2.9.1",
|
|
"pytest==7.2.2",
|
|
"pytest-pretty==1.2.0",
|
|
"python-jose==3.3.0",
|
|
"redis[hiredis]==5.1.0",
|
|
"SQLAlchemy==2.0.30",
|
|
"user-agents==2.2.0",
|
|
"uvicorn[standard]==0.29.0",
|
|
"XdbSearchIP==1.0.2",
|
|
"fastapi_oauth20>=0.0.1a2",
|
|
"flower==2.0.1",
|
|
"sqlalchemy-crud-plus==1.3.0",
|
|
"jinja2==3.1.4",
|
|
"aiofiles==24.1.0",
|
|
# When celery version < 6.0.0
|
|
# https://github.com/celery/celery/issues/7874
|
|
"celery-aio-pool==0.1.0rc6",
|
|
"asgi-correlation-id>=4.3.3",
|
|
]
|
|
requires-python = ">=3.10,<3.13"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
lint = [
|
|
"ruff>=0.5.0",
|
|
]
|
|
deploy = [
|
|
"supervisor>=4.2.5",
|
|
"wait-for-it>=2.2.2",
|
|
]
|
|
|
|
[tool.pdm]
|
|
distribution = false
|
|
|
|
[tool.pdm.scripts]
|
|
lint = "pre-commit run --all-files"
|