You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/06/18 15:42:50 UTC

[incubator-superset] branch master updated: setup: improve description (#5226)

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

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new c670621  setup: improve description (#5226)
c670621 is described below

commit c6706210125211f79c55e593ed7dc7fe172e4284
Author: Riccardo Magliocchetti <ri...@gmail.com>
AuthorDate: Mon Jun 18 17:42:48 2018 +0200

    setup: improve description (#5226)
    
    * setup: improve description
    
    * setup: use README.md as long_description
    
    As pypy.io now should render markdown.
---
 setup.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 30a13e3..b259a5b 100644
--- a/setup.py
+++ b/setup.py
@@ -16,6 +16,9 @@ PACKAGE_FILE = os.path.join(PACKAGE_DIR, 'package.json')
 with open(PACKAGE_FILE) as package_file:
     version_string = json.load(package_file)['version']
 
+with open('README.md') as readme:
+    long_description = readme.read()
+
 
 def get_git_sha():
     try:
@@ -42,8 +45,8 @@ with open(os.path.join(PACKAGE_DIR, 'version_info.json'), 'w') as version_file:
 setup(
     name='superset',
     description=(
-        'A interactive data visualization platform build on SqlAlchemy '
-        'and druid.io'),
+        'A modern, enterprise-ready business intelligence web application'),
+    long_description=long_description,
     version=version_string,
     packages=find_packages(),
     include_package_data=True,

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.