File: __init__.py

package info (click to toggle)
python-click-shell 2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 248 kB
  • sloc: python: 623; makefile: 158; sh: 24
file content (17 lines) | stat: -rw-r--r-- 275 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
click-shell

An extension to click that easily turns your click app into a shell utility
"""

from .core import make_click_shell, Shell
from .decorators import shell

__all__ = [
    'make_click_shell',
    'shell',
    'Shell',
    '__version__',
]

__version__ = "2.1"