mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-06 18:49:47 +08:00
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[tool.poetry]
|
|
authors = ["long2ice <long2ice@gmail.com>"]
|
|
description = "A fast admin dashboard based on FastAPI and TortoiseORM with tabler ui, inspired by Django admin."
|
|
documentation = "https://fastapi-admin.github.io"
|
|
homepage = "https://github.com/fastapi-admin/fastapi-admin"
|
|
keywords = ["fastapi", "admin", "dashboard", "tortoise-orm"]
|
|
license = "Apache-2.0"
|
|
name = "fastapi-admin"
|
|
packages = [
|
|
{ include = "fastapi_admin" },
|
|
]
|
|
readme = "README.md"
|
|
repository = "https://github.com/fastapi-admin/fastapi-admin.git"
|
|
version = "1.0.5"
|
|
|
|
[tool.poetry.dependencies]
|
|
Babel = "*"
|
|
aiofiles = "*"
|
|
redis = "*"
|
|
bcrypt = "*"
|
|
fastapi = "*"
|
|
jinja2 = "*"
|
|
python = "^3.8"
|
|
python-multipart = "*"
|
|
tortoise-orm = "*"
|
|
uvicorn = { version = "*", extras = ["standard"] }
|
|
pendulum = "*"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
# test
|
|
pytest = "*"
|
|
pytest-asyncio = "*"
|
|
pytest-mock = "*"
|
|
pytest-xdist = "*"
|
|
# lint
|
|
black = "*"
|
|
flake8 = "*"
|
|
isort = "*"
|
|
pylint = "*"
|
|
# example
|
|
asyncmy = "*"
|
|
asyncpg = "*"
|
|
python-dotenv = "*"
|
|
mypy = "*"
|
|
|
|
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core>=1.0.0", "setuptools"]
|