Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
setup: improve description (apache#5226)
Browse files Browse the repository at this point in the history
* setup: improve description

* setup: use README.md as long_description

As pypy.io now should render markdown.
  • Loading branch information
xrmx authored and timifasubaa committed Jul 25, 2018
1 parent a9cd3ba commit 1a92d3b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
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:
Expand All @@ -42,8 +45,8 @@ def get_git_sha():
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,
Expand Down

0 comments on commit 1a92d3b

Please sign in to comment.