Mercurial > public > weighmail
comparison setup.py @ 12:b63cce680bd3
First attempt at a setup.py for distribution.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 May 2012 16:39:55 -0500 |
parents | |
children | 7d1ca1fc2f01 |
comparison
equal
deleted
inserted
replaced
11:330b4c283a09 | 12:b63cce680bd3 |
---|---|
1 """weighmail - Copyright (C) 2012 by Brian Neal | |
2 | |
3 Released under the New BSD license, see LICENSE.txt. | |
4 | |
5 """ | |
6 from setuptools import setup, find_packages | |
7 from os.path import join, dirname | |
8 | |
9 import weighmail | |
10 | |
11 setup( | |
12 name='weighmail', | |
13 version=weighmail.__version__, | |
14 author='Brian Neal', | |
15 author_email='bgneal@gmail.com', | |
16 packages=find_packages(), | |
17 url='https://bitbucket.org/bgneal/weighmail/', | |
18 license='BSD', | |
19 description='Labels your Gmail messages according to size.', | |
20 long_description=open(join(dirname(__file__), 'README.txt')).read(), | |
21 entry_points={ | |
22 'console_scripts': ['weighmail = weighmail.main:console_main'], | |
23 }, | |
24 install_requires=[ | |
25 'IMAPClient >= 0.9', | |
26 ], | |
27 classifiers = [ | |
28 'Development Status :: 3 - Alpha', | |
29 'Environment :: Console', | |
30 'Intended Audience :: End Users/Desktop', | |
31 'License :: OSI Approved :: BSD License', | |
32 'Operating System :: OS Independent', | |
33 'Natural Language :: English', | |
34 'Programming Language :: Python', | |
35 'Programming Language :: Python :: 2.7', | |
36 'Topic :: Internet', | |
37 'Topic :: Utilities', | |
38 'Topic :: Communications :: Email', | |
39 'Topic :: Communications :: Email :: Post-Office :: IMAP', | |
40 ], | |
41 ) |