blob: 9aa8597644b13db5d303941a600e65e9cb3a35d4 (
plain) (
tree)
|
|
# Some assistance and tips from:://www.tweag.io/blog/2023-04-04-python-monorepo-1/
[project]
name = "DED"
version = "0.1.0"
requires-python = ">=3.12"
description = "DefNucSyR Engagement Database (DED)"
dependencies = [
"django-widget-tweaks ==1.5.0",
"django-crispy-forms ==2.0",
"django==5.0.9",
"django-htmx ==1.17.3",
"gunicorn ==22.0.0",
"psycopg2 ==2.9.9",
"tzdata ==2024.1",
"whitenoise ==6.6.0",
]
[tool.ruff]
line-length = 120
[tool.pyright]
reportMissingTypeArgument = true # Report generic classes used without type arguments
strictMissingInference = true # Use union types when inferring types of list elements, instead of Any
[tool.uv]
dev-dependencies = [
"django-types>=0.19.1",
"factory-boy>=3.3.1",
"pdbpp>=0.10.3",
"pytest-django>=4.9.0",
"pytest-sugar>=1.0.0",
"pytest>=8.3.3",
]
|