forked from dbca-wa/ibms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.34 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
[tool.poetry]
name = "ibms"
version = "2.9.0"
description = "Integrated Business Management System corporate application"
authors = ["Ashley Felton <[email protected]>"]
license = "Apache-2.0"
package-mode = false
[tool.poetry.dependencies]
python = "~3.12"
django = "4.2.17"
psycopg = { version = "3.2.3", extras = ["binary", "pool"] }
dbca-utils = "2.0.2"
django-extensions = "3.2.3"
python-dotenv = "1.0.1"
dj-database-url = "2.3.0"
gunicorn = "23.0.0"
django-crispy-forms = "2.3"
crispy-bootstrap5 = "2024.10"
xlrd = "2.0.1" # TODO: deprecate
xlutils = "2.0.0" # TODO: deprecate
xlwt = "1.3.0" # TODO: deprecate
openpyxl = "3.1.5"
webtemplate-dbca = "1.7.2"
whitenoise = {version = "6.8.2", extras = ["brotli"]}
mixer = "7.2.2"
[tool.poetry.group.dev.dependencies]
ipython = "^8.30.0"
ipdb = "^0.13.13"
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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"