forked from mirror/django-mailbox
18 lines
596 B
Python
18 lines
596 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='django_mailbox',
|
|
version='1.0.3',
|
|
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=[
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Utilities',
|
|
],
|
|
packages=find_packages(),
|
|
)
|