This is an automated email from the ASF dual-hosted git repository.
kristw 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 3cc7cdf Fix setup.py ASF issues (#6677)
3cc7cdf is described below
commit 3cc7cdfee052fefcbc54ac8aa596d63f9f02e5a9
Author: bolkedebruin <[email protected]>
AuthorDate: Sat Jan 19 12:16:33 2019 +0100
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 e8447de..4b05139 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='[email protected]',
- 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',