Metadata-Version: 2.1
Name: click-plus
Version: 0.0.2b36
Summary: collection of click extensions
Home-page: https://github.com/cav71/click-plus
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE

==========
click-plus
==========
This package helps creating re-usable flags for click scripts.

.. image:: https://img.shields.io/pypi/v/click-plus.svg
    :target: https://pypi.org/project/click-plus
    :alt: PyPI version

.. image:: https://img.shields.io/pypi/pyversions/click-plus.svg
    :target: https://pypi.org/project/click-plus
    :alt: Python versions

.. image:: https://github.com/pytest-dev/pytest-subtests/workflows/build/badge.svg
    :target: https://github.com/pytest-dev/pytest-subtests/actions
    :alt: Build

Features
--------

[![PyPI version](https://badge.fury.io/py/click-plus.svg)](https://badge.fury.io/py/click-plus)
![Build](https://github.com/github/docs/actions/workflows/main.yml/badge.svg)

### Introduction

Example:
```python

import click
import click.plus

@click.command()
.. normal click options/arguments
@click.plus.configure(["my-custon-set"])
def main():
    ...
```

For a full example [here..](README.EXTENSION.MD)


