Template for Python packages based on Conda.
This package is developed to ease development of ECMWF packages, but it is intended to be more generic.
Alpha stage:
- pre-commit hooks
- various linters
- ruff
- version with setuptools-scm-git
- copyright + Apache v2.0 license
- GitHub Actions
- unit-tests (py3.11)
- pre-commit
- integration-tests
- build documentation
- static type check
- build package & publish on PyPI
- Makefile
- gitignore
- make Docker image
- auto template update via cruft
- add documentation skeleton (with sphinx / myst)
Planned:
- keep environment files up-to-date
For best experience create a new conda environment (e.g. DEVELOP) with Python 3.11, cruft and make, then create the package:
conda create -n DEVELOP -c conda-forge python=3.11 cruft make
conda activate DEVELOP
cruft create https://github.com/ecmwf-projects/cookiecutter-conda-package
answer the configuration questions or accept the defaults when in doubt.
Create the git repo and add the pre-commit git hooks:
git init
git add .
git commit -m "Initial commit of the package boilerplate"
Attach an empty remote repository and push the skeleton package:
git branch -M main
git remote add origin [email protected]:ORGANISATION/PROJECT_NAME.git
git push --set-upstream origin main
To setup the package and its dependecies run:
make conda-env-update
conda activate DEVELOP
pre-commit install
pip install -e . --no-deps
Finally to run pre-commit, pytest, and mypy on the newly created package run:
make
To update the boilerplate to the latest template execute:
make template-update
Copyright 2022, European Union.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.