Fixed __init__.py

This commit is contained in:
Zak Timson 2017-01-25 09:37:09 -05:00
parent 045f20061c
commit f4089bfe60
5 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -1 +1 @@
from ZProgressbar.py import Progressbar
from ZProgressbar import ZProgressbar

BIN
ZProgressbar/__init__.pyc Normal file

Binary file not shown.

BIN
dist/ZProgressbar-1.1.tar.gz vendored Normal file

Binary file not shown.

View File

@ -2,12 +2,12 @@ from distutils.core import setup
setup(
name = 'ZProgressbar',
packages = ['ZProgressbar'],
version = '1.1',
version = '1.2',
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',
download_url = 'https://github.com/zaktimson/progressbar/tarball/1.2',
keywords = ['iterator', 'progressbar', 'estimated time', 'timer'],
classifiers = [],
)