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',