-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
71 lines (63 loc) · 1.47 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
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "django_default_project"
version = "1.0.0"
description = "It's not always good to start from scratch .. lets have some sane defaults .."
authors = ["Andy Grabow <[email protected]>"]
license = "MIT"
readme = 'README.md'
package-mode = false
repository = "https://github.com/kakulukia/django-default-project"
homepage = "https://github.com/kakulukia/django-default-project"
[tool.poetry.dependencies]
django = "^5.1.1"
django-secrets = "^1.0.2"
django-undeletable = "1.1.2"
django-extensions = "^3.1.1"
dj-static = "^0.0.6"
django-compressor = "^4.0"
django-axes = "^6.1.1"
pypugjs = "^5.11.0"
django-post-office = "^3.2.1"
uwsgidecorators = "^1.1.0"
huepy = "^1.2.1"
djangorestframework = "^3.11.0"
requests = "^2.22.0"
pendulum = "^3.0.0"
Pillow = "^10.0.1"
python = "^3.10"
sentry-sdk = "^2.13.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.3"
pre-commit = "^3.2.2"
icecream = "^2.1.3"
black = "^24.8.0"
django-debug-toolbar = "^4.0.0"
ipdb = "^0.13.6"
fabric = "<2"
django-browser-reload = "^1.7.0"
[tool.black]
line-length = 99
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
/migrations/ # exclude django migrations
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 99
exclude = [
"migrations",
"node_modules",
".venv",
]
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001"
]