This commit is contained in:
2026-04-23 13:57:56 -06:00
parent 0c6de0babe
commit 028ea6e5f9
93 changed files with 321 additions and 1454 deletions

View File

@@ -7,7 +7,6 @@ requires-python = ">=3.12"
dependencies = [
"channels>=4.2.0",
"channels-redis>=4.2.0",
"coverage==6.5.0",
"daphne>=4.1.2",
"django>=5.2.3",
"django-cas-ng==5.0.1",
@@ -18,9 +17,6 @@ dependencies = [
"dramatiq==1.17.0",
"entrypoints==0.4",
"envelopes==0.4",
"flake8==7.0.0",
"flake8-coding==1.3.2",
"flake8-quotes==3.3.2",
"gunicorn==22.0.0",
"jsonfield==3.1.0",
"openai>=1.108.1",
@@ -33,3 +29,18 @@ dependencies = [
"raven==6.10.0",
"xlsxwriter==3.2.0",
]
[dependency-groups]
dev = [
"ruff>=0.15.11",
]
[tool.ruff]
line-length = 180
exclude = ["*/migrations/*", "*settings.py", "*/apps.py", ".venv"]
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint]
select = ["E", "F", "I"]