Change gunicorn to an optional dependency

This commit is contained in:
Tim Van Baak 2021-02-18 17:09:10 -08:00
parent 875d0364c7
commit c89afe5b94
2 changed files with 10 additions and 4 deletions

9
poetry.lock generated
View File

@ -50,10 +50,10 @@ WTForms = "*"
itsdangerous = "*"
[[package]]
category = "dev"
category = "main"
description = "WSGI HTTP Server for UNIX"
name = "gunicorn"
optional = false
optional = true
python-versions = ">=3.4"
version = "20.0.4"
@ -164,8 +164,11 @@ email = ["email-validator"]
ipaddress = ["ipaddress"]
locale = ["Babel (>=1.3)"]
[extras]
dev = ["gunicorn"]
[metadata]
content-hash = "5a3b077899ce6bd8f1a70c4fc48784486bb1373081d94c5b772191e7edb2788c"
content-hash = "e4930aaf62df0a261424129ab0d89af96ea4e19f80b76c7c6fbcb25c491a213d"
lock-version = "1.0"
python-versions = "^3.8"

View File

@ -9,10 +9,13 @@ python = "^3.8"
flask = "^1.1.2"
flask-login = "^0.5.0"
flask_wtf = "^0.14.3"
gunicorn = {version = "^20.0.4", optional = true}
[tool.poetry.dev-dependencies]
mypy = "^0.800"
gunicorn = "^20.0.4"
[tool.poetry.extras]
dev = ["gunicorn"]
[tool.poetry.scripts]
redstring-check = "redstring.parser:main"