소스 검색

[F] Actually, make numpy a dependency

Azalea (on HyDEV-Daisy) 3 년 전
부모
커밋
1eab4bb157
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      setup.py

+ 1 - 4
setup.py

@@ -32,10 +32,7 @@ setup(
     packages=['hyfetch'],
     package_data={'hyfetch': ['hyfetch/*']},
     include_package_data=True,
-    install_requires=['setuptools', 'typing_extensions'],
-    extras_require={
-        'Gradient color_scale': ['numpy']
-    },
+    install_requires=['setuptools', 'typing_extensions', 'numpy'],
     entry_points={
         "console_scripts": [
             "hyfetch=hyfetch.main:run",