Skip to content

Commit

Permalink
Fixed description content type, added short description
Browse files Browse the repository at this point in the history
  • Loading branch information
jrast committed Oct 5, 2019
1 parent 84fe9d2 commit 20750ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ci/download_release_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
print('Release Tag:', data['tag_name'])

print('Assets:')
for e in data['assets']:
print('Downloading', e['name'])
num_assets = len(data['assets'])
for nr, e in enumerate(data['assets'], 1):
print('(%2d/%2d) Downloading %s' % (nr, num_assets, e['name']))
r = requests.get(e['browser_download_url'], allow_redirects=True)
if r.status_code != 200:
raise RuntimeError('Downloading %s failed!' % e['name'])
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@
url='https://github.com/jrast/littlefs-python',
author='Jürg Rast',
author_email='[email protected]',
description='A python wrapper for littlefs',
long_description=long_description,
long_description_content_type='text/rst',
long_description_content_type='text/x-rst',
use_scm_version=True,
setup_requires=setup_requires,
packages=find_packages('src'),
Expand Down

0 comments on commit 20750ba

Please sign in to comment.