1
0
Fork 0

Updating documentation, updating app name for pypi.

This commit is contained in:
Adam Coddington 2012-07-21 15:39:35 -07:00
parent de66d86459
commit 5e52a233e6
2 changed files with 21 additions and 2 deletions

View file

@ -7,6 +7,25 @@ This small Django application will allow you to specify IMAP or POP3 mailboxes t
WARNING! This app will delete any messages it can find in the inbox you specify-- please make sure you don't have anything important in there. WARNING! This app will delete any messages it can find in the inbox you specify-- please make sure you don't have anything important in there.
Installation
============
You can either install from pip:
pip install django-mailbox
*or* checkout and install the source from the [bitbucket repository](https://bitbucket.org/latestrevision/django-mailbox):
hg clone https://bitbucket.org/latestrevision/django-mailbox
cd django-mailbox
python setup.py install
*or* checkout and install the source from the [github repository](https://github.com/latestrevision/django-mailbox):
git clone https://github.com/latestrevision/django-mailbox.git
cd django-mailbox
python setup.py install
Setting up your mailbox Setting up your mailbox
======================= =======================

View file

@ -1,8 +1,8 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
name='django_mailbox', name='django-mailbox',
version='1.0', version='1.0.1',
url='http://bitbucket.org/latestrevision/django-mailbox/', url='http://bitbucket.org/latestrevision/django-mailbox/',
description='Automatically import mail from POP3 or IMAP into Django', description='Automatically import mail from POP3 or IMAP into Django',
author='Adam Coddington', author='Adam Coddington',