1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
django-mailbox/setup.py

30 lines
1 KiB
Python
Raw Normal View History

2012-07-21 17:27:00 -07:00
from distutils.core import setup
2012-06-27 20:45:01 -07:00
setup(
name='django-mailbox',
2012-07-21 17:27:00 -07:00
version='1.1.1',
2012-06-27 20:45:01 -07:00
url='http://bitbucket.org/latestrevision/django-mailbox/',
description='Automatically import mail from POP3, IMAP, or a local mailbox into Django',
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
)