Browse code

List numpy as required dependency.

Seems to work alright.

Jose Fonseca authored on 21/02/2021 22:25:11
Showing 1 changed files

  • setup.py index f75f804..e72ba26 100755
... ...
@@ -54,6 +54,9 @@ setup(
54 54
         'Topic :: Multimedia :: Graphics :: Viewers',
55 55
     ],
56 56
 
57
-    # This is true, but doesn't work realiably
58
-    #install_requires=['gi', 'gi-cairo', 'numpy'],
57
+    install_requires=[
58
+        # This is true, but doesn't work realiably
59
+        #'PyGObject',
60
+        'numpy'
61
+    ],
59 62
 )