-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 949 Bytes
/
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
[tool.poetry]
name = "collect"
version = "0.1.0"
description = ""
authors = ["Mathieu Leplatre <mathieu@leplat.re>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django-taggit = "^6.0.0"
django = "^5.1"
django-simple-history = "^3.7.0"
pytest = "^8.3.2"
mypy = "^1.11.1"
pytest-cov = "^5.0.0"
ruff = "^0.6.1"
pillow = "^10.4.0"
django-imagekit = "^5.0.0"
django-debug-toolbar = "^4.4.6"
djlint = "^1.34.1"
python-decouple = "^3.8"
dj-database-url = "^2.2.0"
pylibmagic = "^0.5.0"
python-magic = "^0.4.27"
gunicorn = "^23.0.0"
whitenoise = "^6.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
extend-exclude = [
"__pycache__",
".venv/",
]
[tool.ruff.lint]
select = [
# pycodestyle
"E", "W",
# flake8
"F",
# isort
"I",
]
ignore = [
# `format` will wrap lines.
"E501",
]
[tool.ruff.lint.isort]
lines-after-imports = 2