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

48 lines
1.5 KiB
Python
Raw Normal View History

2013-01-19 00:26:58 -08:00
from setuptools import setup
tests_require = [
'django',
'mock',
]
2012-06-27 20:45:01 -07:00
setup(
name='django-mailbox',
2014-05-25 12:37:46 -07:00
version='3.3',
url='http://github.com/latestrevision/django-mailbox/',
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',
2013-01-19 00:26:58 -08:00
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='django_mailbox.runtests.runtests',
2012-06-27 20:45:01 -07:00
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',
2013-06-22 15:59:46 -07:00
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
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',
'django_mailbox.tests',
2013-06-22 15:42:50 -07:00
],
install_requires=[
'six>=1.6.1'
2013-06-22 15:42:50 -07:00
]
2012-06-27 20:45:01 -07:00
)