mirror of https://github.com/tqdm/tqdm.git
28 lines
905 B
Python
28 lines
905 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',
|
|
license='MIT License',
|
|
author='Noam Yorav-Raphael',
|
|
author_email='noamraph@gmail.com',
|
|
url='https://github.com/noamraph/tqdm',
|
|
py_modules=['tqdm'],
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Topic :: Software Development :: Libraries',
|
|
'Intended Audience :: Developers',
|
|
],
|
|
)
|