mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
29 lines
1 KiB
Python
Executable file
29 lines
1 KiB
Python
Executable file
from distutils.core import setup
|
|
|
|
setup(
|
|
name='django-mailbox',
|
|
version='1.2',
|
|
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
|
description='Automatically import mail from POP3, IMAP, or a local mailbox into Django',
|
|
author='Adam Coddington',
|
|
author_email='me@adamcoddington.net',
|
|
classifiers=[
|
|
'Framework :: Django',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'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)',
|
|
],
|
|
packages=[
|
|
'django_mailbox',
|
|
'django_mailbox.management',
|
|
'django_mailbox.management.commands',
|
|
'django_mailbox.migrations',
|
|
'django_mailbox.transports',
|
|
],
|
|
)
|