Skip to content

Latest commit

 

History

History

{{ cookiecutter.repository_name }}

{{ cookiecutter.project_name }}

CI Docs NN Template Python Code style: black

{{ cookiecutter.project_description }}

Installation

pip install git+ssh:https://[email protected]/{{ cookiecutter.github_user }}/{{ cookiecutter.repository_name }}.git

Quickstart

Development installation

Setup the development environment:

git clone [email protected]:{{ cookiecutter.github_user }}/{{ cookiecutter.repository_name }}.git
cd {{ cookiecutter.repository_name }}
conda env create -f env.yaml
conda activate {{ cookiecutter.conda_env_name }}
pre-commit install

Run the tests:

pre-commit run --all-files
pytest -v

Update the dependencies

Re-install the project in edit mode:

pip install -e .[dev]