Skip to content

Commit 4bcedb4

Browse files
author
Polle Vanhoof
committed
Add long description
1 parent 2e4be53 commit 4bcedb4

3 files changed

Lines changed: 13 additions & 0 deletions

File tree

MANIFEST

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py
4+
python_progress_bar/__init__.py
5+
python_progress_bar/progress_bar.py
6+
python_progress_bar/test_bar.py
2.85 KB
Binary file not shown.

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
from distutils.core import setup
2+
3+
4+
with open("README.md", "r") as fh:
5+
long_description = fh.read()
6+
27
setup(
38
name = 'python_progress_bar',
49
packages = ['python_progress_bar'],
@@ -7,6 +12,8 @@
712
description = 'A progress bar for python shell scripts (Linux)',
813
author = 'Polle Vanhoof',
914
author_email = 'vanhoofpolle@gmail.com',
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
1017
url = 'https://github.com/pollev/python_progress_bar',
1118
download_url = 'https://github.com/pollev/python_progress_bar/archive/v1.0.tar.gz',
1219
keywords = ['progress', 'bar', 'indicator'],

0 commit comments

Comments
 (0)