mirror of https://github.com/tqdm/tqdm.git
12 lines
323 B
Python
12 lines
323 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools 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'],
|
|
)
|