Skip to content

Commit 3ea4f8c

Browse files
authored
setup: Add long_description_content_type (#69)
To check this passes tests use: python setup.py sdist twine check dist/
1 parent 5f9696f commit 3ea4f8c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ python:
1111
- pypy3
1212
install:
1313
- pip install -r requirements.txt
14+
- pip install twine readme_renderer
1415
script:
1516
- python setup.py build
1617
- python setup.py test
18+
- python setup.py sdist
19+
- twine check dist/*

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def run(self):
7878
version=VERSION,
7979
description="Osquery Python API",
8080
long_description=README,
81+
long_description_content_type="text/markdown",
8182
author=AUTHOR,
8283
author_email="osquery@fb.com",
8384
url="https://osquery.io",

0 commit comments

Comments
 (0)