forked from mirror/django-mailbox
49 lines
1.5 KiB
Python
Executable file
49 lines
1.5 KiB
Python
Executable file
from setuptools import find_packages, setup
|
|
|
|
from django_mailbox import __version__ as version_string
|
|
|
|
tests_require = [
|
|
'django',
|
|
'mock',
|
|
]
|
|
|
|
gmail_oauth2_require = [
|
|
'python-social-auth',
|
|
]
|
|
|
|
setup(
|
|
name='django-mailbox',
|
|
version=version_string,
|
|
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.'
|
|
),
|
|
author='Adam Coddington',
|
|
author_email='me@adamcoddington.net',
|
|
tests_require=tests_require,
|
|
extras_require={
|
|
'test': tests_require,
|
|
'gmail-oauth2': gmail_oauth2_require
|
|
},
|
|
test_suite='django_mailbox.runtests.runtests',
|
|
classifiers=[
|
|
'Framework :: Django',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'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=find_packages(),
|
|
install_requires=[
|
|
'six>=1.6.1'
|
|
]
|
|
)
|