Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 973 Bytes

File metadata and controls

30 lines (19 loc) · 973 Bytes

Python Package Template

A template repository for python packages complete with basic testing and CI. Use this repository as a starting point for a python project to have these essentials set up from the get-go!

CI status

Installation

To install this package, please checkout the repository and install via pip:

git clone git@github.com:Silvan-K/python-package-template.git
cd python-package-template
pip install .

Tests

To run tests (located in the tests directory) please run

pytest

from within the repository's root directory.

CI

The tests are configured to run as a Github Action on every push to the repository, as configured in ci.yaml