29
setup.py
29
setup.py
@@ -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',],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user