-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (40 loc) · 1.01 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
[tool.poetry]
name = "missas"
version = "0.0.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.12"
dj-database-url = "2.3.0"
django = "5.1.6"
django-extensions = "3.2.3"
django-htmx = "1.22.0"
django-model-utils = "5.0.0"
fontawesomefree = "6.6.0"
gunicorn = "23.0.0"
psycopg2-binary = "2.9.10"
python-decouple = "3.8"
sentry-sdk = {extras = ["django"], version = "2.20.0"}
whitenoise = {extras = ["brotli"], version = "6.9.0"}
[tool.poetry.group.dev.dependencies]
freezegun = "1.5.1"
model-bakery = "1.20.3"
pre-commit = "4.1.0"
pytest = "8.3.4"
pytest-django = "4.10.0"
pytest-mock = "3.14.0"
[tool.poetry.group.scrapers.dependencies]
llm = "^0.21"
scrapy = "2.12.0"
[tool.djlint]
blank_line_after_tag="endblock,extends"
blank_line_before_tag="block"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "missas.settings"
python_files = "tests.py test_*.py *_tests.py"
[tool.ruff]
select = ["E", "F", "I", "S"]
ignore = ["E501"]
line-length = 88
[tool.ruff.per-file-ignores]
"**/tests/**" = ["S101"]