A set of Python utility methods to ease usage of Jupyter notebook
Project description
A set of Python utility methods to ease usage of Jupyter notebook
Free software: MIT
Documentation: jupyter_utils.readthedocs.org/en/latest/
Features
TODO
Usage
Create a virtualenv:
$ virtualenv venv
$ source venv/bin/activate
$ pip install --upgrade pip # Force upgrade to latest version of pip
Setup for production:
$ pip install -r requirements.txt .
Setup for development and unit tests
$ pip install -r requirements.txt -r requirements-dev.txt -e .
Build source package:
python setup.py sdist
Build binary package:
python setup.py bdist
Build Wheel package:
python setup.py bdist_wheel