We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 704ca51 + 6898097 commit 9be82e1Copy full SHA for 9be82e1
setup.py
@@ -11,11 +11,13 @@ def get_version():
11
if line.startswith('__version__'):
12
return eval(line.split('=')[-1])
13
14
+with open("README.rst", "r") as readme_file:
15
+ readme = readme_file.read()
16
17
setup(name='python-gitlab',
18
version=get_version(),
19
description='Interact with GitLab API',
- long_description='Interact with GitLab API',
20
+ long_description=readme,
21
author='Gauvain Pocentek',
22
author_email='gauvain@pocentek.net',
23
license='LGPLv3',
0 commit comments