From 70dfa3daf28fa89405074f9974555319193434cb Mon Sep 17 00:00:00 2001 From: Martin Rusev Date: Tue, 23 Jul 2013 15:16:17 +0300 Subject: [PATCH] Readme updated --- README.md | 7 ++++++- setup.py | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2b0802c..9e6b903 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,12 @@ Mailbox ======= -Python library for reading IMAP email boxes +Python library for reading IMAP mailboxes and converting the email content to human readable data + +Installation +============ + + pip install mailbox Usage diff --git a/setup.py b/setup.py index 48ef911..d577615 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ from setuptools import setup -version = '0.2' +version = '0.3' setup( name='mailbox', version=version, - description="Python library for reading IMAP email boxes and parsing the content to JSON", + description="Python library for readin IMAP mailboxes and parsing emails", long_description= open('README.md').read(), - keywords='email, IMAP, email to json', + keywords='email, IMAP, parsing emails', author='Martin Rusev', author_email='martinrusev@live.com', url='https://github.com/martinrusev/mailbox',