From 06e919e3375d3cda2734c75e099da0b84b6652b4 Mon Sep 17 00:00:00 2001 From: Martin Rusev Date: Tue, 23 Jul 2013 19:59:39 +0300 Subject: [PATCH] Setup updated --- setup.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index d581c25..2e3d9f7 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,17 @@ from setuptools import setup +import os -version = '0.3.1' +version = '0.3.3' + + +def read(filename): + return open(os.path.join(os.path.dirname(__file__), filename)).read() setup( name='mailbox', version=version, - description="Python library for reading IMAP mailboxes and parsing emails", - long_description= open('README.md').read(), + description="Python IMAP for Humans", + long_description= read('README.md'), keywords='email, IMAP, parsing emails', author='Martin Rusev', author_email='martinrusev@live.com',