-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (49 loc) · 1.83 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
54
55
56
57
58
59
60
61
[tool]
[tool.poetry]
name = "Django Mason Kid Starter"
version = "0.0.2"
description = "Django Mason Kid Starter"
authors = ["David Dahan <david.dahan3@gmail.com>"]
[tool.poetry.dependencies]
##########################################################################################
# Main
##########################################################################################
python = "3.11.6"
Django = "4.*" # https://github.com/django/django
django-environ = "*" # https://github.com/joke2k/django-environ
##########################################################################################
# Security
##########################################################################################
django-cors-headers = "*" # https://github.com/adamchainz/django-cors-headers
##########################################################################################
# Database
##########################################################################################
dj-database-url = "*" # https://github.com/jazzband/dj-database-url
psycopg = { extras = [
"binary",
], version = "*" } # https://github.com/psycopg/psycopg
##########################################################################################
# DX & Debug
##########################################################################################
ruff = "*" # https://github.com/charliermarsh/ruff
ipdb = "*" # https://github.com/gotcha/ipdb
[tool.ruff]
line-length = 90
target-version = "py311"
extend-exclude = ["migrations", "__pycache__"]
per-file-ignores = {}
[tool.ruff.mccabe]
max-complexity = 10
[tool.ruff.isort]
section-order = [
"future",
"standard-library",
"django",
"third-party",
"local-folder",
]
[tool.ruff.isort.sections]
"django" = ["django"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"