-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (53 loc) · 1.66 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
[tool.poetry]
name = "nrqz_admin"
version = "0.1.0"
description = "National Radio Quiet Zone (NRQZ) application management tool"
authors = ["Thomas Chamberlin <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "~3.7"
django = "~2.2"
django-crispy-forms = "^1.7"
django-debug-toolbar = "^2.0"
django-extensions = "^2.1"
django-filter = "^2.1"
django-mass-edit = { git = "https://github.com/GreenBankObservatory/django-mass-edit" }
django-sql-explorer = "^1.1"
django-stronghold = "^0.3.0"
django-tables2 = "^2.2.1"
django-watson = "^1.5"
docxtpl = "^0.6.2"
ipython = "^7.5"
ipython-genutils = "^0.2.0"
psycopg2 = "~2.8"
pyexcel = "^0.5.14"
pyexcel-xls = "^0.5.8"
pyexcel-xlsx = "^0.5.7"
requests = "^2.22"
tablib = "^0.13.0"
tabulate = "^0.8.3"
tqdm = ">=4.32"
django-import-data = { git = "https://github.com/GreenBankObservatory/django-import-data" }
django-super-deduper = { git = "https://github.com/GreenBankObservatory/django-super-deduper", branch = "merge_audit" }
# django-tempus-dominus = { git = "https://github.com/FlipperPA/django-tempus-dominus" }
django-tempus-dominus = "^5.1"
pykml = { git = "https://github.com/GreenBankObservatory/pykml.git", branch = "python3" }
django-autocomplete-light = "^3"
django_user_agents = "^0.4.0"
django-environ = "^0.4.5"
[tool.poetry.dev-dependencies]
gunicorn = ">=20.1.0"
sentry-sdk = ">=1.0.0"
ipdb = ">=0.12.0"
pydotplus = ">=2.0"
black = {version = ">=19.3b0"}
pylint = "~2.3"
pylint-django = ">=2.0"
sphinx-autobuild = ">=2021.3.14"
Sphinx = ">=4.3.1"
sphinxcontrib-mermaid = ">=0.7.1"
sphinx-rtd-theme = ">=1.0.0"
wheel = ">=0.37.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"