From 2d346bd501cf90668d0acd29dc4feaf288c68ea1 Mon Sep 17 00:00:00 2001 From: Eduardo Robles Elvira Date: Wed, 26 Jul 2023 09:15:52 +0200 Subject: [PATCH] adding missing dep --- poetry.lock | 30 +++++++++++++++++++++++++++++- pyproject.toml | 1 + 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 9bf0a45..f05ff17 100644 --- a/poetry.lock +++ b/poetry.lock @@ -533,6 +533,23 @@ files = [ {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, ] +[[package]] +name = "prettytable" +version = "3.8.0" +description = "A simple Python library for easily displaying tabular data in a visually appealing ASCII table format" +optional = false +python-versions = ">=3.8" +files = [ + {file = "prettytable-3.8.0-py3-none-any.whl", hash = "sha256:03481bca25ae0c28958c8cd6ac5165c159ce89f7ccde04d5c899b24b68bb13b7"}, + {file = "prettytable-3.8.0.tar.gz", hash = "sha256:031eae6a9102017e8c7c7906460d150b7ed78b20fd1d8c8be4edaf88556c07ce"}, +] + +[package.dependencies] +wcwidth = "*" + +[package.extras] +tests = ["pytest", "pytest-cov", "pytest-lazy-fixture"] + [[package]] name = "pycparser" version = "2.21" @@ -741,6 +758,17 @@ secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17. socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] zstd = ["zstandard (>=0.18.0)"] +[[package]] +name = "wcwidth" +version = "0.2.6" +description = "Measures the displayed width of unicode strings in a terminal" +optional = false +python-versions = "*" +files = [ + {file = "wcwidth-0.2.6-py2.py3-none-any.whl", hash = "sha256:795b138f6875577cd91bba52baf9e445cd5118fd32723b460e30a0af30ea230e"}, + {file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"}, +] + [[package]] name = "werkzeug" version = "2.3.6" @@ -776,4 +804,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "19de67d2d52c43fcbe0cd2451aa518d41c2204404666828ab9ccbc037ff02c22" +content-hash = "056076d474c071767540b31360efae3a76654dcedf615f0fc0d1e493dd189d01" diff --git a/pyproject.toml b/pyproject.toml index 3098559..ab7630e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ cryptography = "^41.0" pyOpenSSL = "23.2.0" enum34 = "^1.1" ipaddress = "^1.0" +prettytable = "^3.8.0" [build-system] requires = ["poetry-core"]