Metadata-Version: 2.1
Name: testghapythonpackage
Version: 0.0.9
Summary: Add short description here
Maintainer-email: Your Name <your@email.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: docs
License-File: LICENSE.md

# Welcome to My Python Project

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/dokempf/test-gha-python-package/ci.yml?branch=main)](https://github.com/dokempf/test-gha-python-package/actions/workflows/ci.yml)
[![Documentation Status](https://readthedocs.org/projects/test-gha-python-package/badge/)](https://test-gha-python-package.readthedocs.io/)
[![codecov](https://codecov.io/gh/dokempf/test-gha-python-package/branch/main/graph/badge.svg)](https://codecov.io/gh/dokempf/test-gha-python-package)

## Installation

The Python packaage `testghapythonpackage` can be installed from PyPI:

```
python -m pip install testghapythonpackage
```

## Development installation

If you want to contribute to the development of `testghapythonpackage`, we recommend
the following editable installation from this repository:

```
git clone git@github.com:dokempf/test-gha-python-package.git
cd test-gha-python-package
python -m pip install --editable .[tests]
```

Having done so, the test suite can be run using `pytest`:

```
python -m pytest
```

## Acknowledgments

This repository was set up using the [SSC Cookiecutter for Python Packages](https://github.com/ssciwr/cookiecutter-python-package).
