Browse code

setup.py: add install_requires python-magic

After this, pip installs will pick up python-magic automatically.
This eliminates the regular warning, and adds functionality.

Matt Domsch authored on 2015/02/06 13:40:08
Showing 1 changed files
... ...
@@ -101,7 +101,7 @@ Authors:
101 101
         'Topic :: Utilities',
102 102
     ],
103 103
 
104
-    install_requires = ["python-dateutil"]
104
+    install_requires = ["python-dateutil", "python-magic"]
105 105
     )
106 106
 
107 107
 # vim:et:ts=4:sts=4:ai