servala-portal/pyproject.toml

37 lines
698 B
TOML
Raw Normal View History

[project]
name = "servala"
version = "0.0.0"
description = "Servala portal server and frontend"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"argon2-cffi>=23.1.0",
2025-03-09 15:04:46 +01:00
"django==5.2b1",
2025-03-16 18:39:18 +01:00
"django-allauth>=65.5.0",
2025-03-16 09:05:35 +01:00
"pillow>=11.1.0",
"psycopg2-binary>=2.9.10",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"djlint>=1.36.4",
"flake8>=7.1.2",
"flake8-bugbear>=24.12.12",
"flake8-pyproject>=1.2.3",
"isort>=6.0.1",
"pytest>=8.3.5",
"pytest-django>=4.10.0",
]
[tool.isort]
profile = "black"
known_first_party = "servala"
[tool.flake8]
max-line-length = 160
2025-03-16 08:40:15 +01:00
exclude = ".venv"
[tool.djlint]
extend_exclude = "src/servala/static/mazer"