From a69e8e1df5d2917e0a110834b9a5212cd0cbf112 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Thu, 2 Feb 2023 05:31:08 +0100 Subject: [PATCH] deps: add gunicorn --- poetry.lock | 40 +++++++++++++++++++++++++++++++++++++++- pyproject.toml | 1 + 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 220afe7..bcff28c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -222,6 +222,27 @@ files = [ [package.extras] test = ["pytest (>=6)"] +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +category = "main" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + [[package]] name = "iniconfig" version = "2.0.0" @@ -368,6 +389,23 @@ files = [ [package.dependencies] tzdata = {version = "*", markers = "python_version >= \"3.6\""} +[[package]] +name = "setuptools" +version = "67.1.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-67.1.0-py3-none-any.whl", hash = "sha256:a7687c12b444eaac951ea87a9627c4f904ac757e7abdc5aac32833234af90378"}, + {file = "setuptools-67.1.0.tar.gz", hash = "sha256:e261cdf010c11a41cb5cb5f1bf3338a7433832029f559a6a7614bd42a967c300"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + [[package]] name = "tomli" version = "2.0.1" @@ -427,4 +465,4 @@ test = ["pytest (>=4.3)", "pytest-mock (>=3.3)"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "3a3adc6f6a072102873ede5fdeed470a9b764bfdeb0efc2407e4f889ec320945" +content-hash = "fa2f462a6924dbc327d1751abc854a5befebba9524ac64f0448d1b63e924a768" diff --git a/pyproject.toml b/pyproject.toml index c312744..97b85b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,6 +13,7 @@ python = "^3.9" bottle = "^0.12.23" clickhouse-driver = "^0.2.4" prometheus-client = "^0.15.0" +gunicorn = "^20.1.0" [tool.poetry.dev-dependencies] black = "^22.6.0"