diff options
author | Joost Evertse <joustie@gmail.com> | 2019-01-21 13:36:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-21 13:36:56 +0100 |
commit | b51d2969ad34a9aad79e42a69f275caf2a4059cb (patch) | |
tree | a4519d935a0b5ae5361cb178318402e09da17d75 /setup.py | |
parent | 53f7de7bfe0056950a8e7271632da3f89e3ba3b3 (diff) | |
parent | 52d76312660109d3669d459b11b448a3a60b9603 (diff) | |
download | gitlab-b51d2969ad34a9aad79e42a69f275caf2a4059cb.tar.gz |
Merge branch 'master' into master
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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', |