tqdm/setup.py

35 lines
1.2 KiB
Python
Raw Normal View History

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