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__,
|
2015-10-11 17:05:33 +00:00
|
|
|
description='A Fast, Extensible Progress Meter',
|
2015-04-16 23:01:18 +00:00
|
|
|
license='MIT License',
|
2015-10-11 13:01:59 +00:00
|
|
|
author='Noam Yorav-Raphael',
|
|
|
|
author_email='noamraph@gmail.com',
|
2015-06-06 13:35:28 +00:00
|
|
|
url='https://github.com/tqdm/tqdm',
|
2015-10-11 13:01:59 +00:00
|
|
|
maintainer='tqdm developers',
|
|
|
|
maintainer_email='python.tqdm@gmail.com',
|
2015-10-11 11:05:07 +00:00
|
|
|
platforms = ["any"],
|
2015-06-07 22:06:41 +00:00
|
|
|
packages=['tqdm'],
|
2015-10-11 11:05:07 +00:00
|
|
|
long_description = open("README.md", "r").read(),
|
2015-10-11 10:42:07 +00:00
|
|
|
classifiers=[ # Trove classifiers, see https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
2015-04-16 23:01:18 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
2015-10-11 10:42:07 +00:00
|
|
|
'Environment :: Console',
|
|
|
|
'Framework :: IPython',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Programming Language :: Python',
|
2015-04-16 23:01:18 +00:00
|
|
|
'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',
|
|
|
|
],
|
2015-10-11 11:05:07 +00:00
|
|
|
keywords = 'progressbar progressmeter progress bar meter rate eta console terminal time',
|
2015-04-16 23:01:18 +00:00
|
|
|
)
|