-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 985 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
49
50
51
[tool.poetry]
name = "taskmanagerpython"
version = "0.1.0"
description = ""
authors = ["Sergey Nesterov <sergioreklamplay@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.0.7"
python-dotenv = "^1.0.1"
psycopg2 = "^2.9.9"
djangorestframework = "^3.15.2"
djangorestframework-simplejwt = "^5.3.1"
black = "^24.4.2"
isort = "^5.13.2"
pre-commit = "^3.7.1"
django-cors-headers = "^4.4.0"
celery = "^5.4.0"
django-celery-beat = "^2.6.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
(
/(
.eggs # exclude a few common directories in the
| .git # root of the project
| .mypy_cache
| .venv
| static
| /*/migrations
| /*/*/migrations
)/
| manage.py
)
'''
[tool.isort]
profile = "black"