aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-05 13:25:58 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-05 13:25:58 +0100
commit1e0be65e13c6b030901b107f08e24eb77e0bef74 (patch)
tree4ef7dcf0eb34e157f38954da2b0d3690a64a7171 /Pipfile
parent[#176] Redo project layout (diff)
[#193] Replace Poetry with Pipenv
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile30
1 files changed, 30 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 00000000..af1629d4
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,30 @@
+[[source]]
+name = "pypi"
+url = "https://pypi.org/simple"
+verify_ssl = true
+
+[dev-packages]
+flake8 = "*"
+flake8-bandit = "*"
+flake8-bugbear = "*"
+flake8-import-order = "*"
+flake8-string-format = "*"
+flake8-tidy-imports = "*"
+mccabe = "*"
+pep8-naming = "*"
+coverage = "*"
+unittest-xml-reporting = "*"
+
+[packages]
+django = ">=2.2"
+django-crispy-forms = "*"
+django-environ = "*"
+django-filter = "*"
+django-hosts = "*"
+djangorestframework = "*"
+djangorestframework-bulk = "*"
+uwsgi = "*"
+psycopg2-binary = "*"
+
+[requires]
+python_version = "3.7"