Mercurial > public > weighmail
view setup.py @ 16:1c0cfc906afa tip
Added tag v0.1.0 for changeset 1e2f63b10b9f
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 May 2012 18:23:48 -0500 |
parents | 7d1ca1fc2f01 |
children |
line wrap: on
line source
"""weighmail - Copyright (C) 2012 by Brian Neal Released under the New BSD license, see LICENSE.txt. """ from setuptools import setup, find_packages from os.path import join, dirname import weighmail setup( name='weighmail', version=weighmail.__version__, author='Brian Neal', author_email='bgneal@gmail.com', packages=find_packages(), url='https://bitbucket.org/bgneal/weighmail/', license='BSD', description='Labels your Gmail messages according to size.', long_description=open(join(dirname(__file__), 'README.txt')).read(), entry_points={ 'console_scripts': ['weighmail = weighmail.main:console_main'], }, install_requires=[ 'IMAPClient >= 0.9', 'distribute', ], classifiers = [ 'Development Status :: 3 - Alpha', 'Environment :: Console', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Topic :: Internet', 'Topic :: Utilities', 'Topic :: Communications :: Email', 'Topic :: Communications :: Email :: Post-Office :: IMAP', ], )