An open API service indexing awesome lists of open source software.

https://github.com/remarkablemark/python-package-template

🐍 Python package template
https://github.com/remarkablemark/python-package-template

package python python-package python-package-template python3 template

Last synced: about 1 month ago
JSON representation

🐍 Python package template

Awesome Lists containing this project

README

          

# python-package-template

[![PyPI version](https://img.shields.io/pypi/v/python-package-template)](https://pypi.org/project/python-package-template/)
[![codecov](https://codecov.io/gh/remarkablemark/python-package-template/graph/badge.svg?token=A5tAkYLEAw)](https://codecov.io/gh/remarkablemark/python-package-template)
[![lint](https://github.com/remarkablemark/python-package-template/actions/workflows/lint.yml/badge.svg)](https://github.com/remarkablemark/python-package-template/actions/workflows/lint.yml)

🐍 Python Package Template

## Prerequisites

- [Python](https://www.python.org/)
- [uv](https://docs.astral.sh/uv/) or pip

## Install

Install with uv:

```sh
uv add python-package-template
```

Or install with pip:

```sh
pip install python-package-template
```

## Usage

Print the greeting:

```py
from python_package_template import hello

print(hello())
```

## License

[MIT](https://github.com/remarkablemark/python-package-template/blob/master/LICENSE)