Skip to content

Commit

Permalink
setup.py: use read() function to find README.rst for long description
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Johnson <[email protected]>
  • Loading branch information
anonymouse64 committed Mar 27, 2019
1 parent 161a5a4 commit b77054c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def find_version(*file_paths):
name='awscli',
version=find_version("awscli", "__init__.py"),
description='Universal Command Line Environment for AWS.',
long_description=open('README.rst').read(),
long_description=read('README.rst'),
author='Amazon Web Services',
url='http://aws.amazon.com/cli/',
scripts=['bin/aws', 'bin/aws.cmd',
Expand Down

0 comments on commit b77054c

Please sign in to comment.