Metadata-Version: 2.1
Name: click-app-template-demo
Version: 0.1
Summary: Demonstrating https://github.com/simonw/click-app
Home-page: https://github.com/simonw/click-app-template-demo
Author: Simon Willison
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/simonw/click-app-template-demo/issues
Project-URL: CI, https://github.com/simonw/click-app-template-demo/actions
Project-URL: Changelog, https://github.com/simonw/click-app-template-demo/releases
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: click
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# click-app-template-demo

[![PyPI](https://img.shields.io/pypi/v/click-app-template-demo.svg)](https://pypi.org/project/click-app-template-demo/)
[![Changelog](https://img.shields.io/github/v/release/simonw/click-app-template-demo?label=changelog)](https://github.com/simonw/click-app-template-demo/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/click-app-template-demo/blob/master/LICENSE)

Demonstrating https://github.com/simonw/click-app

## Installation

Install this plugin using `pip`:

    $ pip install click-app-template-demo

## Usage

Usage instructions go here.

## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

    cd click-app-template-demo
    python -mvenv venv
    source venv/bin/activate

Or if you are using `pipenv`:

    pipenv shell

Now install the dependencies and tests:

    pip install -e '.[test]'

To run the tests:

    pytest


