diff --git a/pypi_push.sh b/pypi_push.sh index 1c15cdd0667c7..48d2e30865349 100755 --- a/pypi_push.sh +++ b/pypi_push.sh @@ -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" diff --git a/setup.py b/setup.py index bb216886a9534..614d882ae06c4 100644 --- a/setup.py +++ b/setup.py @@ -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,