Get up and running quickly with a new python package.
- Rename
./swecc_pypi_templateto whatever your package is named - Find and replace
swecc_pypi_templateandswecc-pypi-template - Optionally change the python versions in
./pyproject.tomland.github/workflows/ci.yml
python -m venv venv
source venv/bin/activate
pip install -e ".[dev]"
pre-commit install# lint
ruff check swecc_pypi_template
# format
black swecc_pypi_template
# type check
mypy swecc_pypi_template
# test
pytest