-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (41 loc) · 961 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.black]
line-length = 119
target-version = ['py39']
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
known_first_party = [
"config",
"enums",
"event_handlers",
"ldm",
"taming",
"router"
]
line_length = 119
lines_after_imports = 2
multi_line_output = 3
use_parentheses = true
[tool.poetry]
name = "TTI-FastAPI"
version = "0.6.0"
description = ""
authors = ["Jibaek Lim <[email protected]>", "YoungJae Kim <[email protected]>", "DongHoon Baek <[email protected]>", "Heewon Shin <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
celery = "^5.2.7"
fastapi = "^0.79.0"
loguru = "^0.6.0"
uvicorn = "^0.18.2"
gunicorn = "^20.1.0"
firebase-admin = "^5.3.0"
[tool.poetry.dev-dependencies]
black = "^23.1.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
pre-commit = "^3.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"