GitHub template repository for creating new Python libarries, using the simonw/python-lib cookiecutter template
Install this library using pip:
$ pip install python-lib-template-repository
Usage instructions go here.
To contribute to this library, first checkout the code. Then create a new virtual environment:
cd python-lib-template-repository
python -mvenv venv
source venv/bin/activate
Or if you are using pipenv:
pipenv shell
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest