-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1017 Bytes
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
[project]
name = "caddy"
version = "2.3.18"
description = "Lightweight application service to harvest and index the cadastre dataset, and expose an API endpoint to allow full-text searching of addresses."
authors = [{ name = "Ashley Felton", email = "ashley.felton@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",
"python-dotenv==1.2.2",
"dj-database-url==3.1.2",
"django-extensions==4.1",
"requests==2.33.1",
"gunicorn==25.3.0",
"fudgeo==1.5.7",
"azure-storage-blob==12.28.0",
"orjson==3.11.8",
"whitenoise[brotli]==6.12.0",
]
[dependency-groups]
dev = ["ipython>=9.12.0", "ipdb>=0.13.13", "mixer>=7.2.2", "pre-commit>=4.6.0"]
# Reference: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 120
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"