mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
setup: improve description (#5226)
* setup: improve description * setup: use README.md as long_description As pypy.io now should render markdown.
This commit is contained in:
committed by
Maxime Beauchemin
parent
c89933d870
commit
c670621012
7
setup.py
7
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,
|
||||
|
||||
Reference in New Issue
Block a user