File: __init__.py

package info (click to toggle)
python-imapclient 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 644 kB
  • sloc: python: 5,341; sh: 14; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 551 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) 2014, Menno Smits
# Released subject to the New BSD License
# Please see http://en.wikipedia.org/wiki/BSD_licenses

# version_info provides the version number in programmer friendly way.
# The 4th part will be either alpha, beta or final.

from .imapclient import *  # noqa: F401,F403
from .response_parser import *  # noqa: F401,F403
from .tls import *  # noqa: F401,F403
from .version import author as __author__  # noqa: F401
from .version import version as __version__  # noqa: F401
from .version import version_info  # noqa: F401