Get up and running quickly with a new python package.
- Rename
./swecc_pypi_template
to whatever your package is named - Find and replace
swecc_pypi_template
andswecc-pypi-template
- Optionally change the python versions in
./pyproject.toml
and.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