Add xlrd to the dependencies

This commit is contained in:
Alexander Hess 2021-05-25 08:07:34 +02:00
parent 67726a0c50
commit 5a5c6dc8ae
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
2 changed files with 19 additions and 1 deletions

19
poetry.lock generated
View file

@ -1086,10 +1086,23 @@ category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "xlrd"
version = "2.0.1"
description = "Library for developers to extract data from Microsoft Excel (tm) .xls spreadsheet files"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
[package.extras]
build = ["wheel", "twine"]
docs = ["sphinx"]
test = ["pytest", "pytest-cov"]
[metadata]
lock-version = "1.1"
python-versions = "^3.8"
content-hash = "8c67bc6cefdeaad5c4dba50c8495947be779d2dc5f89e4b496c7942d0c535b7b"
content-hash = "ef09d42aee02e876665f1444fc7a6af7c26e70f9d91918dc7f0dfbc4e5d404bc"
[metadata.files]
anyio = [
@ -1822,3 +1835,7 @@ websocket-client = [
wrapt = [
{file = "wrapt-1.12.1.tar.gz", hash = "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7"},
]
xlrd = [
{file = "xlrd-2.0.1-py2.py3-none-any.whl", hash = "sha256:6a33ee89877bd9abc1158129f6e94be74e2679636b8a205b43b85206c3f0bbdd"},
{file = "xlrd-2.0.1.tar.gz", hash = "sha256:f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88"},
]

View file

@ -32,6 +32,7 @@ numpy = "^1.20.3"
pandas = "^1.2.4"
requests = "^2.25.1"
tabulate = "^0.8.9"
xlrd = "^2.0.1"
[tool.poetry.dev-dependencies]
black = "^21.5b1"