-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.03 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
[tool.poetry]
name = "budget_management"
version = "0.1.0"
description = ""
authors = [""]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2.5"
django-environ = "^0.11.2"
djangorestframework = "^3.14.0"
cryptography = "^41.0.4"
drf-yasg = "^1.21.7"
djangorestframework-simplejwt = "^5.3.0"
djangorestframework-camel-case = "^1.4.2"
psycopg2-binary = "^2.9.9"
django-filter = "^23.3"
drf-yasg-stubs = "^0.1.4"
python-dotenv = "^1.0.0"
aiohttp = "^3.8.6"
asyncio = "^3.4.3"
tqdm = "^4.66.1"
apscheduler = "^3.10.4"
django-redis = "^5.4.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
django-stubs = "^4.2.6"
djangorestframework-stubs = "^3.14.4"
flake8 = "^6.1.0"
isort = "^5.12.0"
black = "^23.9.1"
pre-commit = "^3.4.0"
coverage = "^7.3.2"
[tool.black]
line-length = 140
target-version = ['py311']
force-exclude = 'migrations'
[tool.isort]
profile = "black"
filter_files = true
skip_glob = ["*/migrations/*", "config/*"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"