Commit 6898097c authored by Max Wittig's avatar Max Wittig 🌍 Committed by Max Wittig
Browse files

docs(setup): use proper readme on PyPI

parent 704ca51d
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',