tmpl-fastapi/pyproject.toml

27 lines
429 B
TOML
Raw Normal View History

[project]
name = "app"
version = "1.0.0"
dependencies = [
"fastapi",
"uvicorn[standard]",
2023-03-24 18:28:29 +03:00
"gunicorn",
"jinja2",
"starlette-wtf",
"sqlalchemy",
"sqlalchemy-utils",
"mysqlclient",
"python-dotenv",
2023-03-24 19:15:00 +03:00
"autopep8",
"pylint",
"mypy",
]
[tool.setuptools]
packages = []
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true
warn_redundant_casts = true
2023-03-24 18:05:28 +03:00
check_untyped_defs = true