-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 871 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "djangocms-haystack"
version = "0.5.1"
description = "aldryn-search inspired Haystack index for djangoCMS projects"
authors = ["Filip Weidemann <filip.weidemann@lfda.de>"]
readme = "README.md"
packages = [{include = "djangocms_haystack"}]
[tool.poetry.dependencies]
python = ">=3.9"
nh3 = "~0.2.18"
whoosh = "~2.7.4"
django-haystack = "~3.3.0"
django-cms = ">=4.1.2, <6"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.5"
pytest = "^8.3.2"
bump2version = "^1.0.1"
nox = "^2024.4.15"
pytest-django = "^4.8.0"
django-app-helper = "^3.3.4"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
extend-select = ["Q", "I"]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "double"
# Formatter settings
[tool.ruff.format]
quote-style = "double"