Metadata-Version: 2.1
Name: MyST-NB
Version: 0.2.0
Summary: A Jupyter Notebook Sphinx reader built on top of the MyST markdown parser.
Home-page: https://github.com/ExecutableBookProject/myst_nb
Author: ExecutableBookProject
Author-email: choldgraf@berkeley.edu
License: BSD-3
Keywords: markdown lexer parser development docutils sphinx
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: myst-parser (~=0.6.0)
Requires-Dist: docutils (>=0.15)
Requires-Dist: sphinx (<3,>=2)
Requires-Dist: jupyter-sphinx (==0.2.4a1)
Requires-Dist: nbformat
Requires-Dist: nbconvert
Requires-Dist: pyyaml
Requires-Dist: sphinx-togglebutton
Provides-Extra: code_style
Requires-Dist: flake8 (<3.8.0,>=3.7.0) ; extra == 'code_style'
Requires-Dist: black ; extra == 'code_style'
Requires-Dist: pre-commit (==1.17.0) ; extra == 'code_style'
Provides-Extra: rtd
Requires-Dist: sphinxcontrib-bibtex ; extra == 'rtd'
Requires-Dist: ipython ; extra == 'rtd'
Requires-Dist: ipywidgets ; extra == 'rtd'
Requires-Dist: pandas ; extra == 'rtd'
Requires-Dist: numpy ; extra == 'rtd'
Requires-Dist: altair ; extra == 'rtd'
Requires-Dist: alabaster ; extra == 'rtd'
Requires-Dist: bokeh ; extra == 'rtd'
Requires-Dist: plotly ; extra == 'rtd'
Requires-Dist: matplotlib ; extra == 'rtd'
Provides-Extra: testing
Requires-Dist: coverage ; extra == 'testing'
Requires-Dist: pytest (<4,>=3.6) ; extra == 'testing'
Requires-Dist: pytest-cov ; extra == 'testing'
Requires-Dist: pytest-regressions ; extra == 'testing'
Requires-Dist: beautifulsoup4 ; extra == 'testing'

# MyST-NB

[![Build Status][travis-badge]][travis-link]
[![Coverage Status][coveralls-badge]][coveralls-link]
[![Documentation Status][rtd-badge]][rtd-link]
[![PyPI][pypi-badge]][pypi-link]

A collection of tools for working with Jupyter Notebooks in Sphinx.

The primary tool this package provides is a Sphinx parser for `ipynb` files.
This allows you to directly convert Jupyter Notebooks into Sphinx documents.
It relies heavily on the [`MyST` parser](https://github.com/ExecutableBookProject/myst_parser).

> 🛑🛑Warning🛑🛑
> This project is in an alpha state. It may evolve rapidly and/or make breaking changes!
> It currently depends on a fork of the Mistletoe library, so keep that in mind as you
> use it!

For more information, [see the MyST-NB documentation](https://myst-nb.readthedocs.io/en/latest/)

[travis-link]: https://travis-ci.org/ExecutableBookProject/MyST-NB
[travis-badge]: https://travis-ci.org/ExecutableBookProject/MyST-NB.svg?branch=master
[rtd-badge]: https://readthedocs.org/projects/myst-nb/badge/?version=latest
[rtd-link]: https://myst-nb.readthedocs.io/en/latest/?badge=latest
[coveralls-badge]: https://coveralls.io/repos/github/ExecutableBookProject/MyST-NB/badge.svg
[coveralls-link]: https://coveralls.io/github/ExecutableBookProject/MyST-NB
[pypi-badge]: https://img.shields.io/pypi/v/myst-nb.svg
[pypi-link]: https://pypi.org/project/myst-nb


