From 6898097c45d53a3176882a3d9cb86c0015f8d491 Mon Sep 17 00:00:00 2001 From: Max Wittig Date: Sun, 9 Dec 2018 10:42:16 +0100 Subject: docs(setup): use proper readme on PyPI --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 02773eb..b592e7c 100644 --- a/setup.py +++ b/setup.py @@ -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', -- cgit v1.2.1