Skip to content

Commit

Permalink
Merge pull request aws#4030 from anonymouse64/bugfix/setup-readme-dir
Browse files Browse the repository at this point in the history
setup.py: use read() function to find README.rst for long description
  • Loading branch information
JordonPhillips authored Mar 28, 2019
2 parents d0c757f + b77054c commit ec39099
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 ec39099

Please sign in to comment.