-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.14 KB
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
[project]
name = "portfolio"
version = "0.1.0"
description = "My own professional and personal Hub"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"django>=6.0.3",
"django-compressor>=4.6.0",
"django-htmx>=1.27.0",
"django-libsass>=0.9",
"libsass>=0.23.0",
"psycopg[binary]>=3.3.3",
"python-dotenv>=1.2.2",
"uvicorn[standard]>=0.41.0",
"whitenoise>=6.12.0",
]
[dependency-groups]
dev = [
"django-debug-toolbar>=6.2.0",
"django-extensions>=4.1",
"mkdocs-material>=9.7.4",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"pytest-django>=4.12.0",
"ruff>=0.15.5",
"watchfiles>=1.1.1",
]
[tool.ruff]
target-version = "py314"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "UP"] # pycodestyle, pyflakes, isort, pyupgrade
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning:compressor"]
DJANGO_SETTINGS_MODULE = "config.settings.test"
asyncio_mode = "auto"
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]