2012-07-21 17:27:00 -07:00
|
|
|
from distutils.core import setup
|
2012-06-27 20:45:01 -07:00
|
|
|
|
|
|
|
|
setup(
|
2012-07-21 15:39:35 -07:00
|
|
|
name='django-mailbox',
|
2013-01-14 03:32:46 -08:00
|
|
|
version='1.5',
|
2012-06-27 20:45:01 -07:00
|
|
|
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
2012-10-09 07:31:31 -07:00
|
|
|
description='Import mail from POP3, IMAP, local mailboxes or directly from Postfix or Exim4 into your Django application automatically.',
|
2012-06-27 20:45:01 -07:00
|
|
|
author='Adam Coddington',
|
|
|
|
|
author_email='me@adamcoddington.net',
|
|
|
|
|
classifiers=[
|
2012-07-23 09:21:55 -07:00
|
|
|
'Framework :: Django',
|
2012-06-27 20:45:01 -07:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python',
|
2012-07-23 09:21:55 -07:00
|
|
|
'Topic :: Communications :: Email',
|
|
|
|
|
'Topic :: Communications :: Email :: Post-Office',
|
|
|
|
|
'Topic :: Communications :: Email :: Post-Office :: IMAP',
|
|
|
|
|
'Topic :: Communications :: Email :: Post-Office :: POP3',
|
|
|
|
|
'Topic :: Communications :: Email :: Email Clients (MUA)',
|
2012-06-27 20:45:01 -07:00
|
|
|
],
|
2012-07-21 17:27:00 -07:00
|
|
|
packages=[
|
|
|
|
|
'django_mailbox',
|
|
|
|
|
'django_mailbox.management',
|
|
|
|
|
'django_mailbox.management.commands',
|
|
|
|
|
'django_mailbox.migrations',
|
|
|
|
|
'django_mailbox.transports',
|
|
|
|
|
],
|
2012-06-27 20:45:01 -07:00
|
|
|
)
|