mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
18 lines
596 B
Python
Executable file
18 lines
596 B
Python
Executable file
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='django-mailbox',
|
|
version='1.0.4',
|
|
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(),
|
|
)
|