1from __future__ import absolute_import
2import sys
3
4# This is the canonical package information.
5__author__    = 'Andrew Dunham'
6__license__   = 'Apache'
7__copyright__ = "Copyright (c) 2012-2013, Andrew Dunham"
8
9# We get the version from a sub-file that can be automatically generated.
10from ._version import __version__
11
12from .multipart import (
13    FormParser,
14    MultipartParser,
15    QuerystringParser,
16    OctetStreamParser,
17    create_form_parser,
18    parse_form,
19)
20