Skip to content

Commit 9356227

Browse files
ebozdumankannappanr
authored andcommitted
Build: Use README.md instead of README.rst (#763)
1 parent 5a0b0e1 commit 9356227

File tree

2 files changed

+3
-209
lines changed

2 files changed

+3
-209
lines changed

README.rst

Lines changed: 0 additions & 207 deletions
This file was deleted.

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
3333
fd.read(), re.MULTILINE).group(1)
3434

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

3838
packages = [
@@ -60,6 +60,7 @@
6060
download_url='https://github.com/minio/minio-py',
6161
author_email='[email protected]',
6262
version=version,
63+
long_description_content_type='text/markdown',
6364
package_dir={'minio': 'minio'},
6465
packages=packages,
6566
install_requires=requires,
@@ -79,6 +80,6 @@
7980
'Topic :: Software Development :: Libraries :: Python Modules',
8081
],
8182
long_description=readme,
82-
package_data={'': ['LICENSE', 'README.rst']},
83+
package_data={'': ['LICENSE', 'README.md']},
8384
include_package_data=True,
8485
)

0 commit comments

Comments
 (0)