You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ja...@apache.org on 2021/05/18 17:53:45 UTC

[systemds] branch master updated: [MINOR] Add file encoding and file type for README.md

This is an automated email from the ASF dual-hosted git repository.

janardhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new c3485c6  [MINOR] Add file encoding and file type for README.md
c3485c6 is described below

commit c3485c6f751a70dc2adb5edfc36d5d01d0d7e5ca
Author: j143 <j1...@protonmail.com>
AuthorDate: Tue May 18 23:23:37 2021 +0530

    [MINOR] Add file encoding and file type for README.md
    
    https://packaging.python.org/specifications/core-metadata/#description-content-type
    
    Metadata:
    Description-Content-Type: text/markdown;
    charset=UTF-8;
    variant=GFM
    
    discussion: https://github.com/j143/systemds/issues/68
    
    Closes  #1281.
---
 src/main/python/setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/python/setup.py b/src/main/python/setup.py
index f79d220..b1f411f 100755
--- a/src/main/python/setup.py
+++ b/src/main/python/setup.py
@@ -50,7 +50,8 @@ setup(
     name=ARTIFACT_NAME,
     version=ARTIFACT_VERSION_SHORT,
     description='SystemDS is a distributed and declarative machine learning platform.',
-    long_description=open('README.md').read(),
+    long_description=open('README.md', encoding='utf-8').read(),
+    long_description_content_type='text/markdown',
     url='https://github.com/apache/systemds',
     author='SystemDS',
     author_email='dev@systemds.apache.org',