mirror of https://github.com/tqdm/tqdm.git
12 lines
284 B
Python
12 lines
284 B
Python
|
#!/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'],
|
||
|
)
|