瀏覽代碼

[F] Fix missing dependency for setuptools

Azalea (on HyDEV-Daisy) 3 年之前
父節點
當前提交
2b5ef302a5
共有 3 個文件被更改,包括 6 次插入2 次删除
  1. 4 0
      README.md
  2. 1 1
      hyfetch/__init__.py
  3. 1 1
      setup.py

+ 4 - 0
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

+ 1 - 1
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__':

+ 1 - 1
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",