1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# 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",
]
|