From d59e4a64d32b6e9cfeaddb62960ecc3d24197e79 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Sun, 19 Jun 2022 15:30:20 -0400 Subject: [PATCH] [+] Add numpy optional dependency --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index d1b130d6..2669c239 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,9 @@ setup( package_data={'hyfetch': ['hyfetch/*']}, include_package_data=True, install_requires=['setuptools', 'typing_extensions'], + extras_require={ + 'Gradient color_scale': ['numpy'] + }, entry_points={ "console_scripts": [ "hyfetch=hyfetch.main:run",