Add webob as a dependency to pyproject

This commit is contained in:
Vikash Kothary 2020-07-30 22:18:52 +01:00
parent 5430b729f9
commit 58441cffbd
4 changed files with 20 additions and 1 deletions

18
poetry.lock generated
View File

@ -928,6 +928,18 @@ optional = false
python-versions = "*"
version = "0.5.1"
[[package]]
category = "main"
description = "WSGI request and response object"
name = "webob"
optional = false
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*"
version = "1.8.6"
[package.extras]
docs = ["Sphinx (>=1.7.5)", "pylons-sphinx-themes"]
testing = ["pytest (>=3.1.0)", "coverage", "pytest-cov", "pytest-xdist"]
[[package]]
category = "dev"
description = "IPython HTML widgets for Jupyter"
@ -953,7 +965,7 @@ docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["jaraco.itertools", "func-timeout"]
[metadata]
content-hash = "d69805c25d0383c09b37a94367a0b11cf73b98b0966fd3253af17d3997896703"
content-hash = "256b39b0726f0028059bd4d3a895cfe5a0676284c57a7615e6178734caa70227"
python-versions = "^3.7"
[metadata.files]
@ -1370,6 +1382,10 @@ webencodings = [
{file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
{file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
]
webob = [
{file = "WebOb-1.8.6-py2.py3-none-any.whl", hash = "sha256:a3c89a8e9ba0aeb17382836cdb73c516d0ecf6630ec40ec28288f3ed459ce87b"},
{file = "WebOb-1.8.6.tar.gz", hash = "sha256:aa3a917ed752ba3e0b242234b2a373f9c4e2a75d35291dcbe977649bd21fd108"},
]
widgetsnbextension = [
{file = "widgetsnbextension-3.5.1-py2.py3-none-any.whl", hash = "sha256:bd314f8ceb488571a5ffea6cc5b9fc6cba0adaf88a9d2386b93a489751938bcd"},
{file = "widgetsnbextension-3.5.1.tar.gz", hash = "sha256:079f87d87270bce047512400efd70238820751a11d2d8cb137a5a5bdbaf255c7"},

View File

@ -14,6 +14,7 @@ pyaudio = "^0.2.11"
decorator = "^4.4.2"
psutil = "^5.7.2"
distro = "^1.5.0"
webob = "^1.8.6"
[tool.poetry.dev-dependencies]
mkdocs = "^1.1.2"

View File

@ -72,6 +72,7 @@ traitlets==4.3.3
urllib3==1.25.10
wcwidth==0.2.5
webencodings==0.5.1
webob==1.8.6
widgetsnbextension==3.5.1
zipp==3.1.0; python_version < "3.8"
-e src/.

View File

@ -12,4 +12,5 @@ requests==2.24.0
send2trash==1.5.0
soupsieve==1.9.6
urllib3==1.25.10
webob==1.8.6
zipp==3.1.0; python_version < "3.8"