2013-10-26 19:59:26 +00:00
|
|
|
#!/usr/bin/env python
|
2015-01-24 13:23:14 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-10-11 10:18:26 +00:00
|
|
|
from tqdm._version import __version__
|
2015-01-24 13:23:14 +00:00
|
|
|
from setuptools import setup
|
2015-04-16 23:01:18 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='tqdm',
|
2015-10-11 10:18:26 +00:00
|
|
|
version=__version__,
|
|
|
|
description='A Simple And Fast Python Progress Meter',
|
2015-04-16 23:01:18 +00:00
|
|
|
license='MIT License',
|
|
|
|
author='Noam Yorav-Raphael',
|
2015-10-11 10:18:26 +00:00
|
|
|
author_email='python.tqdm@gmail.com',
|
2015-06-06 13:35:28 +00:00
|
|
|
url='https://github.com/tqdm/tqdm',
|
2015-06-07 22:06:41 +00:00
|
|
|
packages=['tqdm'],
|
2015-04-16 23:01:18 +00:00
|
|
|
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',
|
2015-10-11 10:18:26 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
2015-04-16 23:01:18 +00:00
|
|
|
'Topic :: Software Development :: Libraries',
|
2015-10-11 10:18:26 +00:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: Software Development :: User Interfaces',
|
|
|
|
'Topic :: System :: Monitoring',
|
|
|
|
'Topic :: Terminals',
|
|
|
|
'Topic :: Utilities',
|
2015-04-16 23:01:18 +00:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
],
|
|
|
|
)
|