forked from dbca-wa/resource_tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.67 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
[project]
name = "resource_tracking"
version = "1.4.45"
description = "DBCA internal corporate application to download and serve data from remote tracking devices."
authors = [
{ name = "Ashley Felton", email = "ashley.felton@dbca.wa.gov.au" },
{ name = "Rocky Chen", email = "rocky.chen@dbca.wa.gov.au" },
{ name = "Adon Metcalfe", email = "adon.metcalfe@dbca.wa.gov.au" },
{ name = "Wilson Cheung", email = "wilson.cheung@dbca.wa.gov.au" },
{ name = "Patrick Maslen", email = "patrick.maslen@dbca.wa.gov.au" },
{ name = "Brendan Cale", email = "brendan.cale@dbca.wa.gov.au" },
]
license = "Apache-2.0"
requires-python = ">=3.13,<4.0"
dependencies = [
"django==5.2.13",
"psycopg[binary,pool]==3.3.4",
"dbca-utils==2.1.5",
"django-extensions==4.1",
"python-dotenv==1.2.2",
"dj-database-url==3.1.2",
"gunicorn[fast]==26.0.0",
"unicodecsv==0.14.1",
"whitenoise[brotli]==6.12.0",
"sentry-sdk[django]==2.59.0",
"django-geojson==4.2.0",
"azure-storage-blob==12.28.0",
"orjson==3.11.8",
"django-crispy-forms==2.6",
"crispy-bootstrap5==2026.3",
"h11==0.16",
"django-tastypie==0.15.1",
"fudgeo==1.5.9",
"uvloop==0.22.1",
]
[dependency-groups]
dev = ["ipython>=9.13.0", "ipdb>=0.13.13", "mixer>=7.2.2", "pre-commit>=4.6.0"]
[project.urls]
homepage = "https://github.com/dbca-wa/resource_tracking"
source = "https://github.com/dbca-wa/resource_tracking.git"
GitHub = "https://github.com/dbca-wa/resource_tracking"
# Reference: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 140
[tool.ruff.lint]
ignore = [
"E501", # Line too long
"E722", # Bare except
]
# Reference: https://www.djlint.com/docs/configuration/
[tool.djlint]
profile = "django"