-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 921 Bytes
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 921 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
44
45
46
47
48
[project]
name = "django-simple-crud-tutorial"
version = "0.1.0"
description = "Django Simple CRUD Tutorial"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"drf-spectacular>=0.28.0",
"drf-spectacular-sidecar>=2024.4.1",
"uvicorn[standard]>=0.34.2",
]
[tool.black]
line-length = 88
skip-string-normalization = false
include = '\.pyi?$'
extend-exclude = '''
/(
| .+/migrations
| __pycache__
)/
'''
[tool.isort]
profile = 'black'
line_length = 88
multi_line_output = 3
include_trailing_comma = true
use_parentheses = true
ensure_newline_before_comments = true
extend_skip = ['migrations', '__pycache__']
known_django = [
'django',
'rest_framework',
'drf_spectacular',
'rest_framework_simplejwt',
]
sections = [
'FUTURE',
'STDLIB',
'DJANGO',
'THIRDPARTY',
'FIRSTPARTY',
'LOCALFOLDER',
]
[tool.django-stubs]
django_settings_module = "root.settings"