servala-portal/pyproject.toml

53 lines
1.2 KiB
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-21 15:41:34 +01:00
"django-fernet-encrypted-fields>=0.3.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",
2025-03-20 15:36:40 +01:00
"rules>=3.5",
"urlman>=2.0.2",
]
[dependency-groups]
dev = [
"black>=25.1.0",
2025-03-23 00:03:04 +01:00
"coverage>=7.7.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",
2025-03-23 00:03:04 +01:00
"pytest-cov>=6.0.0",
"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"
2025-03-23 00:03:04 +01:00
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "servala.settings"
addopts = "-p no:doctest -p no:pastebin -p no:nose --cov=./ --cov-report=term-missing:skip-covered"
testpaths = "src/tests"
pythonpath = "src"