Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

Latest commit

 

History

History
55 lines (34 loc) · 1.12 KB

File metadata and controls

55 lines (34 loc) · 1.12 KB

Cookie Cutter for a jupyter-server-proxy Project

Opinionated jupyter-server-proxy cookiecutter project.

Use this cookiecutter to create jupyter-server-proxy compatible packages.

Requirements

  • Python 3.6+

Create your project

  1. Setup and activate virtual environment (recommended):
virtualenv -p python3 venv
source venv/bin/activate
  1. Install cookiecutter:
pip install "cookiecutter>=1.7.0"
  1. Run cookiecutter against this repo:
cookiecutter https://github.com/illumidesk/cookiecutter-jupyter-server-proxy

Development

  1. Create and activate virtual environment:
virtualenv -p python3 venv
source venv/bin/activate
  1. Install dependencies:
pip install -r dev-requirements.txt

Use pip-compile to update development requirements. Update dev-requirements.in and then run pip-compile dev-requirements.in to create a new version of dev-requirements.txt.

Credits

Based mostly off of the jupyter-server-proxy template project.

License

BSD 3-Clause