Rename the module to imbox to avoid namespace overlap with the Python module
This commit is contained in:
10
setup.py
10
setup.py
@@ -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=[],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user