A collection of tools/extensions for data science.
In order to set up the necessary environment:
- install Poetry
- install dependencies (https://python-poetry.org/docs/basic-usage/#installing-dependencies)
poetry install
- activate the new environment (https://python-poetry.org/docs/basic-usage/#activating-the-virtual-environment)
or just run
source `poetry env info --path`/bin/activate
poetry run python your_script.py
Optional and needed only once after git clone
:
- install several (pre-commit) git hooks with:
and checkout the configuration under
pre-commit install
.pre-commit-config.yaml
. The-n, --no-verify
flag ofgit commit
can be used to deactivate pre-commit hooks temporarily.