Initial import to Tizen
[profile/ivi/python-twisted.git] / twisted / scripts / __init__.py
1 # Copyright (c) Twisted Matrix Laboratories.
2 # See LICENSE for details.
3
4 """
5 Subpackage containing the modules that implement the command line tools.
6
7 Note that these are imported by top-level scripts which are intended to be
8 invoked directly from a shell.
9 """
10
11 from twisted.python.versions import Version
12 from twisted.python.deprecate import deprecatedModuleAttribute
13
14
15 deprecatedModuleAttribute(
16     Version("Twisted", 11, 1, 0),
17     "Seek unzipping software outside of Twisted.",
18     __name__,
19     "tkunzip")
20
21 deprecatedModuleAttribute(
22     Version("Twisted", 12, 1, 0),
23     "tapconvert has been deprecated.",
24     __name__,
25     "tapconvert")
26
27 del Version, deprecatedModuleAttribute