# Copyright (C) 2001-2007 Python Software Foundation
# Author: email-sig@python.org

# Standard distutils setup.py install script for the `mimelib' library, a next
# generation MIME library for Python.  To install into your existing Python
# distribution, run the following at the command line:
#
# % python setup.py install

import sys
from os.path import basename

from distutils.core import setup
from distutils.command.install_lib import install_lib


import email
setup(name='email',
      version=email.__version__,
      description='Standalone email package',
      author='Python Email SIG',
      author_email='email-sig@python.org',
      url='http://www.python.org/sigs/email-sig',
      packages=['email'],
      )
