-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
46 lines (43 loc) · 1.05 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
[tool.poetry]
name = "formula"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.1"
django-celery-beat = "2.7"
django-debug-toolbar = "^4.4"
django-guardian = "^2.4"
django-import-export = "^4.1"
django-simple-history = "^3.7"
django-modeltranslation = "^0.19"
django-money = "^3.5"
django-unfold = { git = "https://github.com/unfoldadmin/django-unfold.git" }
whitenoise = "^6.7"
gunicorn = "^22.0"
pillow = "^10.4"
sentry-sdk = { extras = ["django"], version = "^2.13" }
pygments = "^2.18"
[tool.ruff]
fix = true
line-length = 88
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
exclude = ["**/migrations"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"