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

Commit

Permalink
Make Pypi upload support markdown (apache#5352)
Browse files Browse the repository at this point in the history
Moving to using Twine to upload to pypi and fixing up the markdown
support so that the page on Pypi looks like the README on Github.

This has been tested on the 0.26 branch starting 0.26.3
  • Loading branch information
mistercrunch authored and timifasubaa committed Jul 25, 2018
1 parent c899b3d commit 582b4ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pypi_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ rm superset/assets/dist/*
cd superset/assets/
npm run build
cd ../..
python setup.py sdist upload
python setup.py sdist
echo "RUN: twine upload dist/superset-{VERSION}.tar.gz"

1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def get_git_sha():
description=(
'A modern, enterprise-ready business intelligence web application'),
long_description=long_description,
long_description_content_type='text/markdown',
version=version_string,
packages=find_packages(),
include_package_data=True,
Expand Down

0 comments on commit 582b4ce

Please sign in to comment.