Metadata-Version: 2.1
Name: notes-compiler
Version: 0.3.3
Summary: 
Author: Manuel Brea
Author-email: m.brea.carreras@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: Markdown (>=3.4.1,<4.0.0)
Requires-Dist: Pygments (>=2.13.0,<3.0.0)
Requires-Dist: markdown-katex (>=202112.1034,<202113.0)
Requires-Dist: pymdown-extensions (>=9.5,<10.0)
Requires-Dist: python3-markdown-extension-graphviz (>=0.1.0,<0.2.0)
Description-Content-Type: text/markdown

# notes-compiler

## Usage

```bash
notes <input_path> <output_path>
```

For example:

```bash
notes ./src ./public
```

## Installation

### Release version

Install using pip (or your choice of PyPI package manager):

```bash
pip install notes-compiler
```

### Installing latest master from source

While on the root of this repository:

```bash
poetry install
poetry build
cd dist
pip install notes_compiler-<VERSION>-py3-none-any.whl --force-reinstal
```

replacing `<VERSION>` with the actual version number.

