mne-project-template is a template project for mne-python compatible extensions.
Thank you for cleanly contributing to the mne-python ecosystem!
Refer to the documentation to modify the template for your own mne-python extension or follow this quick reference:
$ git clone https://github.com/mne-tools/mne-project-template.git mne-foo $ cd mne-foo $ # update mne_project_template_bootstrap.sh $ bash mne_project_template_bootstrap.sh $ rm mne_project_template_bootstrap.sh $ rm -rf .git $ git init && git add . && git commit -m 'Initial commit' $ git remote add origin https://github.com/your_remote/mne-foo.git $ git push origin master $ # Activate all CIs