Rename the module to imbox to avoid namespace overlap with the Python module

This commit is contained in:
Martin Rusev
2013-07-30 14:13:06 +03:00
parent 3ea4bd4bf6
commit 8dcc527c7f
5 changed files with 15 additions and 15 deletions

View File

@@ -8,17 +8,17 @@ def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='mailbox',
name='imbox',
version=version,
description="Python IMAP for Humans",
description="Python IMAP for Human beings",
long_description= read('README.md'),
keywords='email, IMAP, parsing emails',
author='Martin Rusev',
author_email='martinrusev@live.com',
url='https://github.com/martinrusev/mailbox',
url='https://github.com/martinrusev/imbox',
license='MIT',
packages=['mailbox'],
package_dir={'mailbox':'mailbox'},
packages=['imbox'],
package_dir={'imbox':'imbox'},
zip_safe=False,
install_requires=[],