servala-portal/pyproject.toml

42 lines
837 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-16 23:15:39 +01:00
"cryptography>=44.0.2",
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-20 10:32:03 +01:00
"django-scopes>=2.0.0",
"django-template-partials>=24.4",
2025-03-16 09:05:35 +01:00
"pillow>=11.1.0",
"psycopg2-binary>=2.9.10",
2025-03-16 23:15:39 +01:00
"pyjwt>=2.10.1",
"requests>=2.32.3",
]
[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"