#!/usr/bin/env python
from distutils.core import setup
setup(name='tqdm',
version='1.0',
description='A Simple Python Progress Meter',
author='Noam Yorav-Raphael',
author_email='noamraph@gmail.com',
url='https://github.com/noamraph/tqdm',
py_modules=['tqdm'],
)