forked from mintcoding/licensing-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (51 loc) · 1.52 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
[tool.poetry]
name = "leases-licensing"
version = "1.0.0"
description = "Leases Licensing"
authors = ["DBCA OIM <asi@dbca.wa.gov.au>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.8"
Django = "3.2.13"
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.34"
requests = "2.22.0"
setuptools = "45.2.0"
six = "1.14.0"
# git+https://github.com/xzzy/webtemplate.git#egg=webtemplate_dbca
webtemplate_dbca = {git = "https://github.com/xzzy/webtemplate.git"}
# git+https://github.com/dbca-wa/dbca-utils@1.1.1#egg=dbca-utils
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"
# git+https://github.com/xzzy/ledger_api_client.git#egg=ledger_api_client
ledger_api_client = {git = "https://github.com/dbca-wa/ledger_api_client.git"}
whitenoise = "6.1.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"
[tool.poetry.dev-dependencies]
ipython = "^8.3.0"
ipdb = "^0.13.9"
pylint = "2.13.8"
flake8 = "4.0.1"
autopep8 = "1.6.0"
black = "22.3.0"
[build-system]
requires = ["poetry_core>=1.1.13"]
build-backend = "poetry.core.masonry.api"