forked from mirror/django-mailbox
Initial commit.
This commit is contained in:
commit
413b60e35f
13 changed files with 340 additions and 0 deletions
18
setup.py
Normal file
18
setup.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='django_mailbox',
|
||||
version='0.1',
|
||||
url='http://bitbucket.org/latestrevision/django-mailbox/',
|
||||
description='Automatically import mail from POP3 or IMAP 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(),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue