From 9d29a5425a0e02c90d29c84b2c6e3079b43dca5e Mon Sep 17 00:00:00 2001 From: Zak Timson Date: Wed, 25 Jan 2017 09:18:02 -0500 Subject: [PATCH] Added python files to make this project a library --- __init__.py | 0 setup.py | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 __init__.py create mode 100644 setup.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1fddb4d --- /dev/null +++ b/setup.py @@ -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 = [], +) \ No newline at end of file