py-bar/setup.py
2017-01-25 09:34:06 -05:00

13 lines
555 B
Python

from distutils.core import setup
setup(
name = 'ZProgressbar',
packages = ['ZProgressbar'],
version = '1.1',
description = 'An iterator that can be displayed as an Ascii progress bar as well as display statistics like speed, progress and estimated time',
author = 'Zak Timson',
author_email = 'zaktimson@gmail.com',
url = 'https://github.com/zaktimson/progressbar',
download_url = 'https://github.com/zaktimson/progressbar/tarball/1.1',
keywords = ['iterator', 'progressbar', 'estimated time', 'timer'],
classifiers = [],
)