Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/simonw/python-lib-template-demo

Demo for https://github.com/simonw/python-lib
https://github.com/simonw/python-lib-template-demo

Last synced: 28 days ago
JSON representation

Demo for https://github.com/simonw/python-lib

Awesome Lists containing this project

README

        

# python-lib-template-demo

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

Demonstrating https://github.com/simonw/python-lib

## Installation

Install this library using `pip`:
```bash
pip install python-lib-template-demo
```
## Usage

Usage instructions go here.

## Development

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