Metadata-Version: 2.1
Name: click-app-template-demo-auto
Version: 0.3.0
Summary: Demonstrating https://github.com/AH-Merii/click-app
Author: AbdulHamid Merii
License: Apache-2.0
Project-URL: Homepage, https://github.com/AH-Merii/click-app-template-demo-auto
Project-URL: Changelog, https://github.com/AH-Merii/click-app-template-demo-auto/releases
Project-URL: Issues, https://github.com/AH-Merii/click-app-template-demo-auto/issues
Project-URL: CI, https://github.com/AH-Merii/click-app-template-demo-auto/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Provides-Extra: dev
Requires-Dist: pip-tools ; extra == 'dev'
Provides-Extra: release
Requires-Dist: python-semantic-release ==9.4.0 ; extra == 'release'
Requires-Dist: build ; extra == 'release'
Requires-Dist: setuptools-scm[toml] ; extra == 'release'
Provides-Extra: test
Requires-Dist: isort ; extra == 'test'
Requires-Dist: black ; extra == 'test'
Requires-Dist: flake8 ; extra == 'test'
Requires-Dist: ruff ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

# click-app-template-demo-auto

[![PyPI](https://img.shields.io/pypi/v/click-app-template-demo-auto.svg)](https://pypi.org/project/click-app-template-demo-auto/)
[![Changelog](https://img.shields.io/github/v/release/AH-Merii/click-app-template-demo-auto?include_prereleases&label=changelog)](https://github.com/AH-Merii/click-app-template-demo-auto/releases)
[![Tests](https://github.com/AH-Merii/click-app-template-demo-auto/actions/workflows/test.yml/badge.svg)](https://github.com/AH-Merii/click-app-template-demo-auto/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/AH-Merii/click-app-template-demo-auto/blob/master/LICENSE)

Demonstrating https://github.com/AH-Merii/click-app

## Installation

Install this tool using `pip`:
```bash
pip install click-app-template-demo-auto
```
## Usage

For help, run:
```bash
click-app-template-demo-auto --help
```
You can also use:
```bash
python -m click_app_template_demo_auto --help
```
## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:
```bash
cd click-app-template-demo-auto
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```
