tqdm/setup.py

12 lines
284 B
Python
Raw Normal View History

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