forked from rasbt/pyprind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 2.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from distutils.core import setup
setup(name='PyPrind',
version='2.9.3',
description='Python Progress Indicator Utility',
author='Sebastian Raschka',
author_email='se.raschka@gmail.com',
url='https://github.com/rasbt/pyprind',
packages=['pyprind'],
data_files=[('', ['LICENSE.txt']),
('', ['README.html']),
('', ['CHANGELOG.txt']),
('examples', ['examples/ex1_percentage_indicator_stderr.py']),
('examples', ['examples/ex1_percentage_indicator_stdout.py']),
('examples', ['examples/ex1_progress_bar_stderr.py']),
('examples', ['examples/ex1_progress_bar_stdout.py']),
('examples', ['examples/ex2_percent_indicator_allargs.py']),
('examples', ['examples/ex2_progressbar_allargs.py']),
('examples', ['examples/ex3_percentage_indicator_monitor.py']),
('examples', ['examples/ex3_progress_bar_monitor.py']),
],
license='GPLv3',
platforms='any',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Environment :: Console',
],
long_description="""
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.
For more details and examples please see the package documentation
https://github.com/rasbt/pyprind/blob/master/README.md.
Contact
=============
If you have any questions or comments about PyPrind, please feel free to contact me via
email: se.raschka@gmail.com
or Twitter: https://twitter.com/rasbt
""",)