Migrate to Poetry and upgrade Django

This commit is contained in:
Jonathan Cremin 2019-07-09 20:27:48 +00:00
parent a18e114223
commit 238d6c4ef9
5 changed files with 98 additions and 118 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[tool.poetry]
name = "min.ie"
version = "0.1.0"
description = ""
authors = ["Jonathan Cremin <jonathan@crem.in>"]
[tool.poetry.dependencies]
python = "^3.6"
django = "^2.2"
dj-database-url = "^0.5.0"
gunicorn = "^19.9"
psycopg2-binary = "^2.8"
whitenoise = "^4.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"