Unverified Commit 9be82e1d authored by Gauvain Pocentek's avatar Gauvain Pocentek Committed by GitHub
Browse files

Merge pull request #659 from python-gitlab/docs/readme-pypi

docs(setup): use proper readme on PyPI
parents 704ca51d 6898097c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -11,11 +11,13 @@ def get_version():
            if line.startswith('__version__'):
                return eval(line.split('=')[-1])

with open("README.rst", "r") as readme_file:
    readme = readme_file.read()

setup(name='python-gitlab',
      version=get_version(),
      description='Interact with GitLab API',
      long_description='Interact with GitLab API',
      long_description=readme,
      author='Gauvain Pocentek',
      author_email='gauvain@pocentek.net',
      license='LGPLv3',