-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 920 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
[tool.poetry]
name = "blog-drf"
version = "0.1.0"
description = "Blog"
authors = ["Semenov Yuriy <info@juriys.ru>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "4.2.9"
djangorestframework = "^3.14.0"
faker = "^22.6.0"
drf-spectacular = "^0.27.1"
pre-commit = "^3.6.0"
celery = "^5.3.6"
redis = "^5.0.1"
gunicorn = "^21.2.0"
psycopg2-binary = "^2.9.9"
django-celery-beat = "^2.5.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
black = "^24.1.1"
isort = "^5.13.2"
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
skip_gitignore = true
skip_glob = ["**/migrations/*", "**/settings/*"]
include_trailing_comma = true
use_parentheses = true
ensure_newline_before_comments = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"