diff options
author | 2018-09-16 22:55:59 +0200 | |
---|---|---|
committer | 2018-09-16 22:55:59 +0200 | |
commit | 05e33c1f8f3d54b940b7935bab96ca0a8c45bf84 (patch) | |
tree | a6e9a53e7cc13cce303c26a0be7f737115995e74 /pyproject.toml | |
parent | Use proper key for formatter setting. (diff) |
Use sane package manager.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..d79bd458 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,27 @@ +[tool.poetry] +name = "pysite" +version = "0.1.0" +description = "Our community website, built on Django." +authors = ["Johannes Christ <[email protected]>"] +license = "MIT" + +[tool.poetry.dependencies] +python = "3.7" +django = "^2.1" +django-hosts = "^3.0" +django-environ = "^0.4.5" +psycopg2-binary = "^2.7" +djangorestframework = "^3.8" +djangorestframework-bulk = "^0.2.1" +gunicorn = "^19.9" + +[tool.poetry.dev-dependencies] +flake8 = "^3.5" +flake8-bugbear = "^18.8" +flake8-bandit = "^1.0" +flake8-import-order = "^0.18.0" +flake8-tidy-imports = "^1.1" +flake8-string-format = "^0.2.3" +coverage = "^4.5" +pep8-naming = "^0.7.0" +mccabe = "^0.6.1" |