See More

#!/usr/bin/env python try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='gitlab3', version='0.5.4', license='LGPLv3', description='GitLab API v3 Python Wrapper.', long_description='A complete Python client/wrapper for GitLab API v3', packages=['gitlab3'], author="Alex Van't Hof", author_email='[email protected]', install_requires=['requests'], url='http://github.com/alexvh/python-gitlab3', keywords='gitlab api client wrapper', )