Files
oxpanel25/pyproject.toml
T
2026-04-11 21:51:30 +02:00

48 lines
926 B
TOML

[project]
name = "oxpanel25"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"anyio~=4.13.0",
"channels~=4.3.2",
"channels-redis~=4.3.0",
"django~=6.0.3",
"django-cors-headers~=4.9.0",
"django-filter~=25.2",
"django-vite~=3.1.0",
"djangorestframework~=3.17.1",
"djangorestframework-simplejwt~=5.5.1",
"stream-zip~=0.0.84",
"transmission-rpc~=7.0.11",
"uvicorn~=0.43.0",
"uvloop~=0.22.1",
"websockets~=16.0",
]
[dependency-groups]
dev = [
"ruff>=0.15.9",
]
[tool.ruff]
target-version = "py314"
line-length = 88
src = ["app"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "DJ"]
ignore = [
"E501",
]
[tool.ruff.lint.per-file-ignores]
"app/**/migrations/*.py" = ["E501", "F401"]
"app/**/settings.py" = ["F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"