25 lines
539 B
Python
25 lines
539 B
Python
from setuptools import setup
|
|
import os
|
|
|
|
version = '0.5'
|
|
|
|
|
|
def read(filename):
|
|
return open(os.path.join(os.path.dirname(__file__), filename)).read()
|
|
|
|
setup(
|
|
name='mailbox',
|
|
version=version,
|
|
description="Python IMAP for Humans",
|
|
long_description= read('README.md'),
|
|
keywords='email, IMAP, parsing emails',
|
|
author='Martin Rusev',
|
|
author_email='martinrusev@live.com',
|
|
url='https://github.com/martinrusev/mailbox',
|
|
license='MIT',
|
|
packages=['mailbox'],
|
|
package_dir={'mailbox':'mailbox'},
|
|
zip_safe=False,
|
|
install_requires=[],
|
|
|
|
) |