Browse code

setup.py: use install_requires

http://pythonhosted.org/setuptools/setuptools.html#new-and-changed-setup-keywords
notes that the old keyword 'requires' no longer works, and we need to
use 'install_requires' instead.

Matt Domsch authored on 2015/02/03 10:42:01
Showing 1 changed files
... ...
@@ -75,7 +75,7 @@ Authors:
75 75
 --------
76 76
     Michal Ludvig  <michal@logix.cz>
77 77
 """ % (S3.PkgInfo.long_description),
78
-    requires=["dateutil"]
78
+    install_requires=["dateutil"]
79 79
     )
80 80
 
81 81
 # vim:et:ts=4:sts=4:ai