Skip to content

Commit

Permalink
Add long description
Browse files Browse the repository at this point in the history
  • Loading branch information
Polle Vanhoof committed Aug 22, 2020
1 parent 2e4be53 commit 4bcedb4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
python_progress_bar/__init__.py
python_progress_bar/progress_bar.py
python_progress_bar/test_bar.py
Binary file added dist/python_progress_bar-1.0.tar.gz
Binary file not shown.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
from distutils.core import setup


with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name = 'python_progress_bar',
packages = ['python_progress_bar'],
Expand All @@ -7,6 +12,8 @@
description = 'A progress bar for python shell scripts (Linux)',
author = 'Polle Vanhoof',
author_email = '[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
url = 'https://github.com/pollev/python_progress_bar',
download_url = 'https://github.com/pollev/python_progress_bar/archive/v1.0.tar.gz',
keywords = ['progress', 'bar', 'indicator'],
Expand Down

0 comments on commit 4bcedb4

Please sign in to comment.