-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 685 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 685 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
[project]
name = "chowist"
description = "Great places are chosen by great chowists"
version = "3.3.3"
dependencies = [
"crispy-bootstrap5==2026.3",
"Django~=6.0.0",
"django-crispy-forms==2.6",
"django-filter==25.2",
"gunicorn==25.1.0",
"psycopg2-binary==2.9.11",
"redis==7.3.0",
"ruff",
"mypy",
"coverage",
]
requires-python = ">=3.12"
[tool.ruff]
line-length = 160
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "I"]
# F405: Star imports are useful for common project settings
ignore = ["F405"]
[tool.coverage.report]
fail_under = 80
[tool.coverage.run]
source = ["chowist", "places", "portal"]
[tool.mypy]
ignore_missing_imports = true