-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 867 Bytes
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
[tool.poetry]
name = "basic-django"
version = "0.1.0"
description = ""
authors = ["Rasul Kireev <rasul@builtwithdjango.com>"]
[tool.poetry.dependencies]
python = "^3.9"
Django = "^4.0.1"
python-webpack-boilerplate = "^1.0.0"
django-widget-tweaks = "^1.4.12"
django-environ = "^0.11.2"
django-allauth = {extras = ["socialaccount"], version = "^64.0.0"}
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.4"
pylint = "^2.17.1"
pylint-django = "^2.5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "django"
combine_as_imports = true
include_trailing_comma = true
line_length = 120
multi_line_output = 3
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
[tool.djlint]
profile="django"
ignore = "H031"
[tool.ruff]
line-length = 120