diff --git a/france/poetry.lock b/france/poetry.lock index 46721ae..09fcebb 100644 --- a/france/poetry.lock +++ b/france/poetry.lock @@ -82,6 +82,14 @@ category = "main" optional = false python-versions = ">=3.7" +[[package]] +name = "uwsgi" +version = "2.0.20" +description = "The uWSGI server" +category = "main" +optional = true +python-versions = "*" + [[package]] name = "werkzeug" version = "2.1.2" @@ -105,10 +113,13 @@ python-versions = ">=3.7" docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"] testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)"] +[extras] +uwsgi = ["uWSGI"] + [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "96e0953d3aaf9cc28530d13a97f66573dffa356b850efb64d59d3d8356de2670" +content-hash = "22dc31ed2f24fc96f3cd412113fe05f63b85c9bbc73c92b74c8d4d915d3cd092" [metadata.files] click = [ @@ -177,6 +188,9 @@ markupsafe = [ {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, ] +uwsgi = [ + {file = "uwsgi-2.0.20.tar.gz", hash = "sha256:88ab9867d8973d8ae84719cf233b7dafc54326fcaec89683c3f9f77c002cdff9"}, +] werkzeug = [ {file = "Werkzeug-2.1.2-py3-none-any.whl", hash = "sha256:72a4b735692dd3135217911cbeaa1be5fa3f62bffb8745c5215420a03dc55255"}, {file = "Werkzeug-2.1.2.tar.gz", hash = "sha256:1ce08e8093ed67d638d63879fd1ba3735817f7a80de3674d293f5984f25fb6e6"}, diff --git a/france/pyproject.toml b/france/pyproject.toml index 6645203..f3e1117 100644 --- a/france/pyproject.toml +++ b/france/pyproject.toml @@ -8,6 +8,11 @@ authors = ["Remi Rampin "] python = "^3.8" Flask = "^2.1.2" +uWSGI = {version = "*", optional = true} + +[tool.poetry.extras] +uwsgi = ["uWSGI"] + [tool.poetry.dev-dependencies] [build-system]