diff options
Diffstat (limited to 'click/__init__.py')
| -rw-r--r-- | click/__init__.py | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/click/__init__.py b/click/__init__.py index fc40c7e..3b602cc 100644 --- a/click/__init__.py +++ b/click/__init__.py @@ -1,17 +1,15 @@ # -*- coding: utf-8 -*- """ - click - ~~~~~ +click +~~~~~ - Click is a simple Python module that wraps the stdlib's optparse to make - writing command line scripts fun. Unlike other modules, it's based around - a simple API that does not come with too much magic and is composable. +Click is a simple Python module inspired by the stdlib optparse to make +writing command line scripts fun. Unlike other modules, it's based +around a simple API that does not come with too much magic and is +composable. - In case optparse ever gets removed from the stdlib, it will be shipped by - this module. - - :copyright: (c) 2014 by Armin Ronacher. - :license: BSD, see LICENSE for more details. +:copyright: © 2014 by the Pallets team. +:license: BSD, see LICENSE.rst for more details. """ # Core classes @@ -96,4 +94,4 @@ __all__ = [ disable_unicode_literals_warning = False -__version__ = '7.0-dev' +__version__ = '7.0.dev' |
