-
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
4d28d18
commit 6b8a5bc
Showing
7 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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,5 @@ | ||
from progress_bar.py import enable_trapping | ||
from progress_bar.py import setup_scroll_area | ||
from progress_bar.py import destroy_scroll_area | ||
from progress_bar.py import draw_progress_bar | ||
from progress_bar.py import block_progress_bar |
Binary file not shown.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
[metadata] | ||
description-file = README.md |
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,25 @@ | ||
from distutils.core import setup | ||
setup( | ||
name = 'python_progress_bar', | ||
packages = ['python_progress_bar'], | ||
version = '1.0', | ||
license='MIT', | ||
description = 'A progress bar for python shell scripts (Linux)', | ||
author = 'Polle Vanhoof', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/pollev/python_progress_bar', | ||
download_url = '', | ||
keywords = ['progress', 'bar', 'indicator'], | ||
install_requires=[ | ||
], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', # "3 - Alpha" / "4 - Beta" / "5 - Production/Stable" | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
) |