summaryrefslogtreecommitdiff
path: root/click/__init__.py
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2018-09-24 08:21:11 -0700
committerDavid Lord <davidism@gmail.com>2018-09-24 08:21:11 -0700
commit5585856f5a7075656f94ffa2af8757cbd1b4fcca (patch)
treed4e393b3263de84a7ce5cce81913d7993aeee862 /click/__init__.py
parenta589835a5b656eec4bace076ac7e947662c1cc68 (diff)
downloadclick-meta.tar.gz
update metadatameta
test on 3.7 fix collections deprecation warning
Diffstat (limited to 'click/__init__.py')
-rw-r--r--click/__init__.py20
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'