diff options
author | itxaka <itxakaserrano@gmail.com> | 2013-11-07 00:36:58 +0100 |
---|---|---|
committer | itxaka <itxakaserrano@gmail.com> | 2013-11-07 00:36:58 +0100 |
commit | 01ade72edf9d5dec27b5676c7fb05e9a995c775a (patch) | |
tree | 1c8549cbaa2073902170e300ebd27fb1c65db859 /setup.py | |
parent | 5f0136c7f84c7c6235d360aee6104232639a1d63 (diff) | |
download | gitlab-01ade72edf9d5dec27b5676c7fb05e9a995c775a.tar.gz |
fixed the requirements auto install from setup.py
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -from distutils.core import setup +from setuptools import setup def get_version(): f = open('gitlab.py') @@ -22,6 +22,7 @@ setup(name='python-gitlab', url='https://github.com/gpocentek/python-gitlab', py_modules=['gitlab'], scripts=['gitlab'], + install_requires=['requests'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', |