Add support for python 3

Re #26
This commit is contained in:
rbas
2014-10-23 23:26:40 +02:00
parent eef6cc99a6
commit 2544ef725d
5 changed files with 67 additions and 53 deletions

View File

@@ -8,18 +8,17 @@ def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='imbox',
version=version,
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/imbox',
license='MIT',
packages=['imbox'],
package_dir={'imbox':'imbox'},
zip_safe=False,
install_requires=[],
)
name='imbox',
version=version,
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/imbox',
license='MIT',
packages=['imbox'],
package_dir={'imbox':'imbox'},
zip_safe=False,
install_requires=['six',],
)