1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00

add gunicorn

This commit is contained in:
Lukas Winkler 2020-06-01 12:08:57 +02:00
parent e6bf404e8a
commit fbc0c63c76
Signed by: lukas
GPG key ID: 54DE4D798D244853
2 changed files with 23 additions and 1 deletions

23
poetry.lock generated
View file

@ -174,6 +174,23 @@ optional = false
python-versions = "*" python-versions = "*"
version = "0.4.15" version = "0.4.15"
[[package]]
category = "main"
description = "WSGI HTTP Server for UNIX"
name = "gunicorn"
optional = false
python-versions = ">=3.4"
version = "20.0.4"
[package.dependencies]
setuptools = ">=3.0"
[package.extras]
eventlet = ["eventlet (>=0.9.7)"]
gevent = ["gevent (>=0.13)"]
setproctitle = ["setproctitle"]
tornado = ["tornado (>=0.2)"]
[[package]] [[package]]
category = "main" category = "main"
description = "HTTP client mock for Python" description = "HTTP client mock for Python"
@ -356,7 +373,7 @@ docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["jaraco.itertools", "func-timeout"] testing = ["jaraco.itertools", "func-timeout"]
[metadata] [metadata]
content-hash = "468a618511e5d5bd03581f2e972b96f08b50cd48da088593b715cd68a2c69ebe" content-hash = "9eae2cb8f2154c86a10640bc55fdd0920724dbcb718a2f11146550997d21e734"
python-versions = ">=3.7,<4.0" python-versions = ">=3.7,<4.0"
[metadata.files] [metadata.files]
@ -476,6 +493,10 @@ greenlet = [
{file = "greenlet-0.4.15-cp38-cp38-win_amd64.whl", hash = "sha256:7457d685158522df483196b16ec648b28f8e847861adb01a55d41134e7734122"}, {file = "greenlet-0.4.15-cp38-cp38-win_amd64.whl", hash = "sha256:7457d685158522df483196b16ec648b28f8e847861adb01a55d41134e7734122"},
{file = "greenlet-0.4.15.tar.gz", hash = "sha256:9416443e219356e3c31f1f918a91badf2e37acf297e2fa13d24d1cc2380f8fbc"}, {file = "greenlet-0.4.15.tar.gz", hash = "sha256:9416443e219356e3c31f1f918a91badf2e37acf297e2fa13d24d1cc2380f8fbc"},
] ]
gunicorn = [
{file = "gunicorn-20.0.4-py2.py3-none-any.whl", hash = "sha256:cd4a810dd51bf497552cf3f863b575dabd73d6ad6a91075b65936b151cbf4f9c"},
{file = "gunicorn-20.0.4.tar.gz", hash = "sha256:1904bb2b8a43658807108d59c3f3d56c2b6121a701161de0ddf9ad140073c626"},
]
httpretty = [ httpretty = [
{file = "httpretty-0.8.10-py2-none-any.whl", hash = "sha256:77cbd62e20cb47f1c66125531aedcb80c3141dc10c5b24779389693cfc8bc3a2"}, {file = "httpretty-0.8.10-py2-none-any.whl", hash = "sha256:77cbd62e20cb47f1c66125531aedcb80c3141dc10c5b24779389693cfc8bc3a2"},
{file = "httpretty-0.8.10.tar.gz", hash = "sha256:474a72722d66841f0e59cee285d837e1c6263be5be7bf2f8e824fc849a99adda"}, {file = "httpretty-0.8.10.tar.gz", hash = "sha256:474a72722d66841f0e59cee285d837e1c6263be5be7bf2f8e824fc849a99adda"},

View file

@ -15,6 +15,7 @@ djangorestframework = "^3.11.0"
requests = "^2.23.0" requests = "^2.23.0"
ads = "^0.12.3" ads = "^0.12.3"
Pillow = "^7.1.2" Pillow = "^7.1.2"
gunicorn = "^20.0.4"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
bpython = "^0.19" bpython = "^0.19"