forked from dbca-wa/ibms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (67 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (67 loc) · 1.5 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "ibms"
version = "2.12.2"
description = "Integrated Business Management System corporate application"
authors = [{ name = "Ashley Felton", email = "ashley.felton@dbca.wa.gov.au" }]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.13,<4"
dependencies = [
"django==5.2.14",
"psycopg[binary,pool]==3.3.4",
"python-dotenv==1.2.2",
"dj-database-url==3.1.2",
"gunicorn==26.0.0",
"django-extensions==4.1",
"django-crispy-forms==2.6",
"crispy-bootstrap5==2026.3",
"webtemplate-dbca==1.9.0",
"whitenoise[brotli]==6.12.0",
"openpyxl==3.1.5",
# TODO: deprecate xl* libs
"xlrd==2.0.2",
"xlwt==1.3.0",
"xlutils==2.0.0",
"django-reversion==6.3.0",
"markupsafe>=3.0.3",
"dbca-utils==2.2.0",
"azure-storage-blob==12.30.0",
"django-tasks==0.12.0",
"django-tasks-db==0.12.0",
]
[dependency-groups]
dev = [
"ipython>=9.15.0",
"ipdb>=0.13.13",
"mixer>=7.2.2",
"faker>=12.0.1",
"pre-commit>=4.6.0",
"coverage>=7.14.3",
"django-stubs>=6.0.6",
"deptry>=0.25.1",
]
# Reference: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 140
indent-width = 4
[tool.ruff.lint]
ignore = [
"E501", # Line too long
"E722", # Bare except
]
# Reference: https://www.djlint.com/docs/configuration/
[tool.djlint]
profile = "django"
[tool.deptry]
ignore = ["DEP004"]
[tool.deptry.per_rule_ignores]
DEP002 = [
"django-extensions",
"gunicorn",
"psycopg",
"whitenoise",
"crispy-bootstrap5",
"webtemplate-dbca",
"markupsafe",
"django-tasks-db",
]