From 3cc7cdfee052fefcbc54ac8aa596d63f9f02e5a9 Mon Sep 17 00:00:00 2001 From: bolkedebruin Date: Sat, 19 Jan 2019 12:16:33 +0100 Subject: [PATCH] Fix setup.py ASF issues (#6677) * This renames the package to apache-superset instead of superset. This is required. * It sets the download location to the official ASF repositories --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index e8447de9cf1..4b05139c29a 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ with open(os.path.join(PACKAGE_DIR, 'version_info.json'), 'w') as version_file: setup( - name='superset', + name='apache-superset', description=( 'A modern, enterprise-ready business intelligence web application'), long_description=long_description, @@ -115,12 +115,11 @@ setup( 'cors': ['flask-cors>=2.0.0'], 'console_log': ['console_log==0.2.10'], }, - author='Apache Superset Dev', + author='Apache Software Foundation', author_email='dev@superset.incubator.apache.org', - url='https://github.com/apache/incubator-superset', + url='http://superset.apache.org/', download_url=( - 'https://github.com' - '/apache/incubator-superset/tarball/' + version_string + 'https://dist.apache.org/repos/dist/release/superset/' + version_string ), classifiers=[ 'Programming Language :: Python :: 3.6',