summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Gompa <ngompa13@gmail.com>2019-02-25 08:48:00 -0500
committerNeal Gompa <ngompa13@gmail.com>2019-02-25 08:49:09 -0500
commitbe273c4b8d97960efcb4d53ec0d09286d3e942c3 (patch)
tree49f9a3fb2fda182abd337188baa7b17d0e0ecd63
parent01fa32b0f1fa06b6681d15eb7c545629dcbefb5e (diff)
downloadurlgrabber-be273c4b8d97960efcb4d53ec0d09286d3e942c3.tar.gz
Define setup_requires in setup.py and add six to install_requires
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9caeb59..25f669b 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,8 @@ data_files = [
('share/doc/' + name + '-' + version, ['README','LICENSE', 'TODO', 'ChangeLog']),
('libexec', ['scripts/urlgrabber-ext-down']),
]
-install_requires = ['pycurl']
+setup_requires = ['six']
+install_requires = ['pycurl', 'six']
options = { 'clean' : { 'all' : 1 } }
classifiers = [
'Development Status :: 4 - Beta',