summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authoritxaka <itxakaserrano@gmail.com>2013-11-07 00:36:58 +0100
committeritxaka <itxakaserrano@gmail.com>2013-11-07 00:36:58 +0100
commit01ade72edf9d5dec27b5676c7fb05e9a995c775a (patch)
tree1c8549cbaa2073902170e300ebd27fb1c65db859 /setup.py
parent5f0136c7f84c7c6235d360aee6104232639a1d63 (diff)
downloadgitlab-01ade72edf9d5dec27b5676c7fb05e9a995c775a.tar.gz
fixed the requirements auto install from setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4783ffe..4222b07 100644
--- a/setup.py
+++ b/setup.py
@@ -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',