Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b5ef302a5 | |||
| 81364f55a2 |
@@ -6,7 +6,7 @@ neofetch with pride flags <3
|
||||
|
||||
## Installation
|
||||
|
||||
Install Python >= 3.9 first. Then, just do:
|
||||
Install Python >= 3.7 first. Then, just do:
|
||||
|
||||
```sh
|
||||
pip install hyfetch
|
||||
@@ -32,6 +32,24 @@ Feel free to experiment with it!
|
||||
|
||||

|
||||
|
||||
## Change Log
|
||||
|
||||
### 1.0.3
|
||||
|
||||
* Fix missing dependency for setuptools
|
||||
|
||||
### 1.0.2
|
||||
|
||||
* Implement RGB to 8bit conversion
|
||||
* Add support for Python 3.7 and 3.8
|
||||
|
||||
### 1.0.1
|
||||
|
||||
* Included 11 flag presets
|
||||
* Ability to lighten colors with `--c-set-l <lightness>`
|
||||
* Command-line flag chooser
|
||||
* Supports Python >= 3.9
|
||||
|
||||
## More Screenshots
|
||||
|
||||

|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ from __future__ import annotations
|
||||
from . import main
|
||||
|
||||
|
||||
__version__ = '1.0.2'
|
||||
__version__ = '1.0.3'
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user