Skip to content

Commit

Permalink
setup: use README.md as long_description
Browse files Browse the repository at this point in the history
As pypy.io now should render markdown.
  • Loading branch information
xrmx committed Jun 18, 2018
1 parent bbb6475 commit 08cc437
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 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 Down Expand Up @@ -43,6 +46,7 @@ def get_git_sha():
name='superset',
description=(
'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 08cc437

Please sign in to comment.