-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Polle Vanhoof
committed
Aug 22, 2020
1 parent
2e4be53
commit 4bcedb4
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'], | ||
|
@@ -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'], | ||
|