-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
41 lines (34 loc) · 928 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
[tool.poetry]
name = "vue3fastapi-to-do"
version = "0.1.0"
description = "Sticky-do App"
authors = ["Bekzod Mirahmedov <[email protected]>"]
readme = "README.md"
packages = [{include = "vue3fastapi_to_do"}]
[tool.poetry.dependencies]
python = "3.11.3"
fastapi = "0.110.0"
uvicorn = "0.27.1"
sqlalchemy = {extras = ["asyncio"], version = "2.0.28"}
pydantic = "2.6.3"
pydantic-settings = "2.2.1"
passlib = "1.7.4"
python-multipart = "0.0.9"
bcrypt = "4.0.1"
ruff = "0.3.2"
pyjwt = "2.8.0"
gunicorn = "21.2.0"
httpx = "0.27.0"
asyncpg = "0.29.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["W", "E", "I", "TCH", "A", "COM", "S"]
ignore = ["COM812"]
[tool.ruff.lint.isort]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
[tool.ruff.format]
skip-magic-trailing-comma = false