diff options
author | Mika Mäenpää <mika.j.maenpaa@tut.fi> | 2014-10-13 16:40:09 +0300 |
---|---|---|
committer | Mika Mäenpää <mika.j.maenpaa@tut.fi> | 2014-10-14 13:50:33 +0300 |
commit | 431e4bdf089354534f6877d39631ff23038e8866 (patch) | |
tree | 9ab369d25c72491e91369cb2bbd45deb3c1599ad /setup.py | |
parent | d714c4d35bc627d9113a4925f843c54d6123e621 (diff) | |
download | gitlab-431e4bdf089354534f6877d39631ff23038e8866.tar.gz |
Py3 compatibility with six
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ setup(name='python-gitlab', url='https://github.com/gpocentek/python-gitlab', py_modules=['gitlab'], scripts=['gitlab'], - install_requires=['requests'], + install_requires=['requests', 'six'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', |