1
0
Fork 0
django-mailbox/setup.py

55 lines
1.6 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
gmail_oauth2_require = [
'python-social-auth',
]
2012-06-27 20:45:01 -07:00
setup(
name='django-mailbox',
version='3.4.1',
2014-07-31 20:30:42 -07:00
url='http://github.com/coddingtonbear/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,
'gmail-oauth2': gmail_oauth2_require
},
2013-01-19 00:26:58 -08:00
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
)