This commit is contained in:
Jinlong Peng
2022-08-24 21:25:11 +08:00
parent ab1d115240
commit 37534cecd0
7 changed files with 0 additions and 16 deletions

1
.gitignore vendored
View File

@@ -54,7 +54,6 @@ coverage.xml
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:

View File

@@ -1,7 +0,0 @@
import subprocess
def build(setup_kwargs):
print("Compile translations:")
subprocess.run(["pybabel", "compile", "--directory", "fastapi_admin/locales"])
return setup_kwargs

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

@@ -3,13 +3,6 @@ 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"
include = [
"LICENSE",
"README.md",
"CHANGELOG.md",
"fastapi_admin/locales/en_US/LC_MESSAGES/messages.mo",
"fastapi_admin/locales/zh_CN/LC_MESSAGES/messages.mo"
]
keywords = ["fastapi", "admin", "dashboard", "tortoise-orm"]
license = "Apache-2.0"
name = "fastapi-admin"
@@ -19,7 +12,6 @@ packages = [
readme = "README.md"
repository = "https://github.com/fastapi-admin/fastapi-admin.git"
version = "1.0.5"
build = "build.py"
[tool.poetry.dependencies]
Babel = "*"