forked from dbca-wa/it-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.26 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
[project]
name = "itassets"
version = "2.4.63"
description = "DBCA IT assets (both physical and knowledge-based) management system"
authors = [
{ name = "Ashley Felton", email = "ashley.felton@dbca.wa.gov.au" },
{ name = "Rocky Chen", email = "rocky.chen@dbca.wa.gov.au" },
]
license = "Apache-2.0"
requires-python = ">=3.13,<4.0"
dependencies = [
"django==5.2.13",
"psycopg[binary,pool]==3.3.3",
"dbca-utils==2.1.5",
"django-extensions==4.1",
"python-dotenv==1.2.2",
"dj-database-url==3.1.2",
"gunicorn[fast]==25.3.0",
"unicodecsv==0.14.1",
"python-dateutil==2.9.0",
"webtemplate-dbca==1.8.3",
"requests==2.33.1",
"msal==1.36.0",
"whitenoise[brotli]==6.12.0",
"xlsxwriter==3.2.9",
"sentry-sdk[django]==2.58.0",
"redis==7.4.0",
"django-storages[azure]==1.14.6",
"paramiko==4.0.0",
"django-reversion==6.1.0",
]
[dependency-groups]
dev = [
"ipython>=9.13.0",
"ipdb>=0.13.13",
"mixer>=7.2.2",
"pre-commit>=4.6.0",
"coverage>=7.13.5",
]
# Reference: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 140
indent-width = 4
extend-exclude = ["migrations"]
[tool.ruff.lint]
ignore = [
"E501", # Line too long
"E722", # Bare except
]
# Reference: https://www.djlint.com/docs/configuration/
[tool.djlint]
profile = "django"