Add xlrd to the dependencies
This commit is contained in:
parent
67726a0c50
commit
5a5c6dc8ae
2 changed files with 19 additions and 1 deletions
19
poetry.lock
generated
19
poetry.lock
generated
|
@ -1086,10 +1086,23 @@ category = "dev"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "*"
|
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]
|
[metadata]
|
||||||
lock-version = "1.1"
|
lock-version = "1.1"
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
content-hash = "8c67bc6cefdeaad5c4dba50c8495947be779d2dc5f89e4b496c7942d0c535b7b"
|
content-hash = "ef09d42aee02e876665f1444fc7a6af7c26e70f9d91918dc7f0dfbc4e5d404bc"
|
||||||
|
|
||||||
[metadata.files]
|
[metadata.files]
|
||||||
anyio = [
|
anyio = [
|
||||||
|
@ -1822,3 +1835,7 @@ websocket-client = [
|
||||||
wrapt = [
|
wrapt = [
|
||||||
{file = "wrapt-1.12.1.tar.gz", hash = "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7"},
|
{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"},
|
||||||
|
]
|
||||||
|
|
|
@ -32,6 +32,7 @@ numpy = "^1.20.3"
|
||||||
pandas = "^1.2.4"
|
pandas = "^1.2.4"
|
||||||
requests = "^2.25.1"
|
requests = "^2.25.1"
|
||||||
tabulate = "^0.8.9"
|
tabulate = "^0.8.9"
|
||||||
|
xlrd = "^2.0.1"
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
black = "^21.5b1"
|
black = "^21.5b1"
|
||||||
|
|
Loading…
Reference in a new issue