From 2b5ef302a5e8fd617de4974353e4afc29f4400d8 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Sun, 10 Apr 2022 23:27:10 -0400 Subject: [PATCH] [F] Fix missing dependency for setuptools --- README.md | 4 ++++ hyfetch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f9743b1a..059cb917 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,10 @@ Feel free to experiment with it! ## Change Log +### 1.0.3 + +* Fix missing dependency for setuptools + ### 1.0.2 * Implement RGB to 8bit conversion diff --git a/hyfetch/__init__.py b/hyfetch/__init__.py index 004c7c1e..9397cb3d 100644 --- a/hyfetch/__init__.py +++ b/hyfetch/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations from . import main -__version__ = '1.0.2' +__version__ = '1.0.3' if __name__ == '__main__': diff --git a/setup.py b/setup.py index 408ed2d1..cdbe3472 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( packages=['hyfetch'], package_data={'hyfetch': ['hyfetch/*']}, include_package_data=True, - install_requires=['hypy_utils==1.0.6', 'typing_extensions'], + install_requires=['setuptools', 'hypy_utils==1.0.6', 'typing_extensions'], entry_points={ "console_scripts": [ "hyfetch=hyfetch.main:run",