Skip to content

Commit

Permalink
Build: Use README.md instead of README.rst (#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebozduman authored and kannappanr committed May 23, 2019
1 parent 5a0b0e1 commit 9356227
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 209 deletions.
207 changes: 0 additions & 207 deletions README.rst

This file was deleted.

5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)

with open('README.rst', 'r', 'utf-8') as f:
with open('README.md', 'r', 'utf-8') as f:
readme = f.read()

packages = [
Expand Down Expand Up @@ -60,6 +60,7 @@
download_url='https://github.com/minio/minio-py',
author_email='dev@min.io',
version=version,
long_description_content_type='text/markdown',
package_dir={'minio': 'minio'},
packages=packages,
install_requires=requires,
Expand All @@ -79,6 +80,6 @@
'Topic :: Software Development :: Libraries :: Python Modules',
],
long_description=readme,
package_data={'': ['LICENSE', 'README.rst']},
package_data={'': ['LICENSE', 'README.md']},
include_package_data=True,
)

0 comments on commit 9356227

Please sign in to comment.