Metadata-Version: 2.3
Name: cookiecutter-python-cli-app-demo
Version: 2025.1.0
Summary: Demo of https://github.com/sgraaf/cookiecutter-python-cli-app.
Keywords: 
Author: Steven van de Graaf
Author-email: Steven van de Graaf <steven@vandegraaf.xyz>
License: MIT License
         
         Copyright © 2025 Steven van de Graaf
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Typing :: Typed
Requires-Dist: click
Requires-Python: ~=3.9
Project-URL: Changelog, https://cookiecutter-python-cli-app-demo.readthedocs.io/en/stable/changelog.html
Project-URL: Documentation, https://cookiecutter-python-cli-app-demo.readthedocs.io/en/stable/
Project-URL: Issue Tracker, https://github.com/sgraaf/cookiecutter-python-cli-app-demo/issues
Project-URL: Source Code, https://github.com/sgraaf/cookiecutter-python-cli-app-demo
Description-Content-Type: text/markdown

<!-- start docs-include-index -->

# Cookiecutter Python CLI App Demo

[![PyPI](https://img.shields.io/pypi/v/cookiecutter-python-cli-app-demo)](https://img.shields.io/pypi/v/cookiecutter-python-cli-app-demo)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/cookiecutter-python-cli-app-demo)](https://pypi.org/project/cookiecutter-python-cli-app-demo/)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/sgraaf/cookiecutter-python-cli-app-demo/main.svg)](https://results.pre-commit.ci/latest/github/sgraaf/cookiecutter-python-cli-app-demo/main)
[![Test](https://github.com/sgraaf/cookiecutter-python-cli-app-demo/actions/workflows/test.yml/badge.svg)](https://github.com/sgraaf/cookiecutter-python-cli-app-demo/actions/workflows/test.yml)
[![Documentation Status](https://readthedocs.org/projects/cookiecutter-python-cli-app-demo/badge/?version=latest)](https://cookiecutter-python-cli-app-demo.readthedocs.io/en/latest/?badge=latest)
[![PyPI - License](https://img.shields.io/pypi/l/cookiecutter-python-cli-app-demo)](https://img.shields.io/pypi/l/cookiecutter-python-cli-app-demo)

Demo of https://github.com/sgraaf/cookiecutter-python-cli-app.

<!-- end docs-include-index -->

## Installation

<!-- start docs-include-installation -->

Cookiecutter Python CLI App Demo is available on [PyPI](https://pypi.org/project/cookiecutter-python-cli-app-demo/). Install with [uv](https://docs.astral.sh/uv/) or your package manager of choice:

```sh
uv tool install cookiecutter-python-cli-app-demo
```

<!-- end docs-include-installation -->

## Documentation

Check out the [Cookiecutter Python CLI App Demo documentation](https://cookiecutter-python-cli-app-demo.readthedocs.io/en/stable/) for the [User's Guide](https://cookiecutter-python-cli-app-demo.readthedocs.io/en/stable/usage.html) and [CLI Reference](https://cookiecutter-python-cli-app-demo.readthedocs.io/en/stable/cli.html).

## Usage

<!-- start docs-include-usage -->

Running `cookiecutter-python-cli-app-demo --help` or `python -m cookiecutter_python_cli_app_demo --help` shows a list of all of the available options and arguments:

<!-- [[[cog
import cog
from cookiecutter_python_cli_app_demo import cli
from click.testing import CliRunner
runner = CliRunner()
result = runner.invoke(cli.cli, ["--help"], terminal_width=88)
help = result.output.replace("Usage: cli", "Usage: cookiecutter-python-cli-app-demo")
cog.outl(f"\n```sh\ncookiecutter-python-cli-app-demo --help\n{help.rstrip()}\n```\n")
]]] -->
<!-- [[[end]]] -->

<!-- end docs-include-usage -->
