Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/simonw/python-lib-template-demo
- Owner: simonw
- License: apache-2.0
- Created: 2020-09-06T15:03:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T17:50:38.000Z (3 months ago)
- Last Synced: 2024-10-06T20:51:28.201Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```
## UsageUsage 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
```