summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2021-05-16 13:37:08 +0300
committerYuval Adam <_@yuv.al>2021-05-16 13:37:08 +0300
commit485ac8edd8ed203a53817ebc9f4d902b58912b68 (patch)
treee8257fa4f97941c51f4eff5d2e24e087c1a6b946
parent2c6fc874f18a65403fe4f9600d46552bb40590fb (diff)
Install blessed dependency
-rw-r--r--Pipfile1
-rw-r--r--Pipfile.lock25
-rw-r--r--setup.py2
3 files changed, 26 insertions, 2 deletions
diff --git a/Pipfile b/Pipfile
index d0949b0..6a9c049 100644
--- a/Pipfile
+++ b/Pipfile
@@ -6,6 +6,7 @@ name = "pypi"
[packages]
requests = "*"
click = "*"
+blessed = "*"
[dev-packages]
pytest = "*"
diff --git a/Pipfile.lock b/Pipfile.lock
index 0777c0a..8cd4226 100644
--- a/Pipfile.lock
+++ b/Pipfile.lock
@@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
- "sha256": "59356621b80c0c8b2ac9c39edf92fb52ed694e13985c0d7b954e8f8f0247018f"
+ "sha256": "0a2b0f67cd4c492fddecac9a9d4ae8b1f2a2c74dd5a78ba3269d80b9a9487efb"
},
"pipfile-spec": 6,
"requires": {},
@@ -14,6 +14,14 @@
]
},
"default": {
+ "blessed": {
+ "hashes": [
+ "sha256:1312879f971330a1b7f2c6341f2ae7e2cbac244bfc9d0ecfbbecd4b0293bc755",
+ "sha256:5b5e2f0563d5a668c282f3f5946f7b1abb70c85829461900e607e74d7725106e"
+ ],
+ "index": "pypi",
+ "version": "==1.18.0"
+ },
"certifi": {
"hashes": [
"sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c",
@@ -53,6 +61,14 @@
"index": "pypi",
"version": "==2.25.1"
},
+ "six": {
+ "hashes": [
+ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926",
+ "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"
+ ],
+ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
+ "version": "==1.16.0"
+ },
"urllib3": {
"hashes": [
"sha256:2f4da4594db7e1e110a944bb1b551fdf4e6c136ad42e4234131391e21eb5b0df",
@@ -60,6 +76,13 @@
],
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
"version": "==1.26.4"
+ },
+ "wcwidth": {
+ "hashes": [
+ "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784",
+ "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"
+ ],
+ "version": "==0.2.5"
}
},
"develop": {
diff --git a/setup.py b/setup.py
index a9c81df..0f3aa40 100644
--- a/setup.py
+++ b/setup.py
@@ -26,6 +26,6 @@ setuptools.setup(
packages=setuptools.find_packages(exclude="tests"),
package_data={"alarmpy": ["data/*.json"]},
python_requires=">=3.6",
- install_requires=["requests", "click"],
+ install_requires=["requests", "click", "blessed"],
entry_points={"console_scripts": ["alarmpy = alarmpy:cli"]},
)