diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2016-06-30 09:13:59 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2016-06-30 09:13:59 +0000 |
commit | 76659e861d976ef4f47b80f90f4b39498a7eaf34 (patch) | |
tree | f1d9a07177722f4c24c18dac97727376b8e56c3f /misc/py-pyprind/files | |
parent | Add WWW link to zfsnap2 (diff) |
[NEW] misc/py-pyprind: Python Progress Bar and Percent Indicator Utility
The PyPrind (Python Progress Indicator) module provides a progress bar
and a percentage indicator object that let you track the progress of a
loop structure or other iterative computation. Typical applications
include the processing of large data sets to provide an intuitive
estimate at runtime about the progress of the computation.
WWW: https://www.github.com/rasbt/pyprind
PR: 207758
Submitted by: Neel Chauhan <neel neelc org>
Notes
Notes:
svn path=/head/; revision=417819
Diffstat (limited to 'misc/py-pyprind/files')
-rw-r--r-- | misc/py-pyprind/files/patch-setup.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/misc/py-pyprind/files/patch-setup.py b/misc/py-pyprind/files/patch-setup.py new file mode 100644 index 000000000000..05a5b6ba64c2 --- /dev/null +++ b/misc/py-pyprind/files/patch-setup.py @@ -0,0 +1,10 @@ +--- setup.py.orig 2016-04-14 15:46:12 UTC ++++ setup.py +@@ -39,6 +39,7 @@ setup(name='PyPrind', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Environment :: Console'], ++ test_suite = "nose.collector", + long_description=""" + + The PyPrind (Python Progress Indicator) module provides a progress |