-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.17 KB
/
pyproject.toml
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
[project]
name = "itassets"
version = "2.4.34"
description = "DBCA IT assets (both physical and knowledge-based) management system"
authors = [
{ name = "Ashley Felton", email = "[email protected]" },
{ name = "Rocky Chen", email = "[email protected]" },
]
license = "Apache-2.0"
requires-python = ">=3.12,<4.0"
dependencies = [
"django == 4.2.18",
"psycopg[binary,pool] == 3.2.4",
"dbca-utils == 2.0.3",
"django-extensions == 3.2.3",
"python-dotenv == 1.0.1",
"dj-database-url == 2.3.0",
"gunicorn == 23.0.0",
"unicodecsv == 0.14.1",
"python-dateutil == 2.8.2",
"webtemplate-dbca == 1.7.2",
"msal == 1.31.1",
"whitenoise[brotli] == 6.8.2",
"pysftp == 0.2.9",
"xlsxwriter==3.2.2",
"sentry-sdk[django]==2.20.0",
"redis == 5.2.1",
"django-storages[azure] == 1.14.4",
]
[dependency-groups]
dev = [
"ipython >= 8.31.0",
"ipdb >= 0.13.13",
"mixer >= 7.2.2",
"pre-commit >= 4.0.1",
]
# Reference: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = [
"E501", # Line too long
"E722", # Bare except
]
# Reference: https://www.djlint.com/docs/configuration/
[tool.djlint]
profile = "django"