Added python files to make this project a library

This commit is contained in:
Zak Timson 2017-01-25 09:18:02 -05:00
parent c045c55d93
commit 9d29a5425a
2 changed files with 13 additions and 0 deletions

0
__init__.py Normal file
View File

13
setup.py Normal file
View File

@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'progressbar',
packages = ['progressbar'],
version = '1.0',
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.0',
keywords = ['iterator', 'progressbar', 'estimated time', 'timer'],
classifiers = [],
)