Metadata-Version: 2.1
Name: blackhc.notebook
Version: 2.0.2
Summary: Notebook setup code
Home-page: https://github.com/blackhc/notebook_setup
Author: Andreas @blackhc Kirsch
Author-email: blackhc+notebook_setup@gmail.com
License: MIT
Keywords: jupyter
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: gitpython
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pyfakefs (==3.3) ; extra == 'test'

# Notebook setup package

[![Build Status](https://travis-ci.org/BlackHC/notebook_setup.svg?branch=master)](https://travis-ci.org/BlackHC/notebook_setup)

Idea is to
```
import blackhc.notebook
```
and get someuseful stuff in your jupyter notebooks.

Right now 'useful stuff' is:

* finds the project root and changes directory to that;
* adds `$project_root/src` to the Python paths;
* load the autoreload extension and set its mode to 2.

## Installation

To install using pip, use:

```
pip install blackhc.notebook
```

To run the tests, use:

```
python setup.py test
```


