forked from dbca-wa/park-passes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (68 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "parkpasses"
version = "1.0.0"
description = "Park Passes"
authors = ["DBCA OIM <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.8"
Django = "^3.2"
django-confy = "1.0.4" # old
dj-database-url = "0.5.0" # old
django_countries = "7.3.2"
django_cron = "0.5.1"
django_reversion = "5.0.0"
geojson = "2.5.0"
python_dateutil = "2.8.2"
pytz = "2019.3"
reportlab = "3.5.55"
requests = "2.28.1"
setuptools = "45.2.0"
six = "1.14.0"
dbca-utils = {git = "https://github.com/dbca-wa/dbca-utils.git", rev = "1.1.1"}
psycopg2-binary = "2.8.5"
django-extensions = "3.1.5"
ledger_api_client = {git = "https://github.com/dbca-wa/ledger_api_client.git"}
whitenoise = {extras = ["brotli"], version = "^6.2.0"}
djangorestframework = "3.13.1"
djangorestframework-gis = "1.0"
openpyxl = "3.0.9"
django-ckeditor = "6.4.0"
django-widget-tweaks = "1.4.12"
djangorestframework-datatables = "0.7.0"
django-utils-six = "2.0" # old
django-phonenumber-field = "6.1.0"
phonenumbers = "8.12.48"
babel = "2.10.1"
django-dirtyfields = "1.8.1"
pytest = "^7.1.2"
coverage = "^6.4.1"
django-coverage-plugin = "^2.0.3"
mypy = "^0.961"
pytest-sugar = "^0.9.4"
pytest-django = "^4.5.2"
qrcode = "^7.3.1"
docxtpl = "^0.16.0"
django-filter = "^22.1"
django-resized = "^1.0.1"
drf-renderer-xlsx = "^1.0.0"
django-org-model-logs = {git = "https://github.com/dbca-wa/django-org-model-logs.git"}
django-org-model-documents = {git = "https://github.com/dbca-wa/django-org-model-documents.git"}
django-autoslug = "^1.9.8"
XlsxWriter = "^3.0.3"
webtemplate-dbca = {git = "https://github.com/dbca-wa/webtemplate2.git"}
beautifulsoup4 = "^4.11.1"
pymupdf = "^1.21.1"
django-colorfield = "^0.8.0"
[tool.poetry.group.dev.dependencies]
django-debug-toolbar = "^3.4.0"
ipython = "^8.3.0"
ipdb = "^0.13.9"
pylint = "2.13.8"
flake8 = "4.0.1"
autopep8 = "1.6.0"
black = "22.3.0"
deptry = "^0.6.5"
[build-system]
requires = ["poetry_core>=1.1.13"]
build-backend = "poetry.core.masonry.api"