-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.22 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "fastapi-template"
version = "0.1.0"
description = ""
authors = ["Vadim Sultanov <[email protected]>"]
readme = "README.md"
packages = [{include = "fastapi_template"}]
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
fastapi = {extras = ["session"], version = "^0.110.0"}
sqlmodel = "^0.0.16"
alembic = "^1.13.1"
uvicorn = "^0.29.0"
asyncpg = "^0.29.0"
bcrypt = "^4.1.2"
jwt = "^1.3.1"
python-jose = "^3.3.0"
pydantic = {extras = ["email"], version = "^2.6.4"}
pydantic-settings = "^2.2.1"
dramatiq = {extras = ["watch"], version = "^1.16.0"}
pika = "^1.3.2"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.13.2"
autoflake = "^2.3.1"
pre-commit = "^3.7.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
mimesis = "^15.1.0"
pytest-cov = "^5.0.0"
httpx = "^0.27.0"
aiosqlite = "^0.20.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = """
/(
| alembic
| .venv
| venv
)/"""
line-length = 120
[tool.isort]
line_length = 120
skip_glob = ["alembic"]
profile = "black"
[tool.autoflake]
check = false
exclude = ["alembic"]
in-place = true
recursive = true
remove-all-unused-imports = true