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
This commit is contained in:
bolkedebruin 2019-01-19 12:16:33 +01:00 committed by Krist Wongsuphasawat
parent 01063ce96c
commit 3cc7cdfee0
1 changed files with 4 additions and 5 deletions

View File

@ -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',