diff --git a/README.md b/README.md index 63b8226..7846083 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,22 @@ Example: ![example](https://github.com/loreucci/matplotlib-latex-bridge/raw/master/mlb-example.png) +## Install + +The latest stable version can be installed via pip: + +```commandline +pip install matplotlib-latex-bridge +``` + +Otherwise, the library can be installed from sources: + +```commandline +git clone https://github.com/loreucci/matplotlib-latex-bridge.git +cd matplotlib-latex-bridge +pip install -e . +``` + ## Quickstart Initialize the library using one of the presets provided: diff --git a/docs/source/conf.py b/docs/source/conf.py index 4785323..4d05213 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -11,7 +11,7 @@ # -- Project information ----------------------------------------------------- project = 'matplotlib-latex-bridge' -copyright = '2021, Lorenzo Vannucci' +copyright = '2022, Lorenzo Vannucci' author = 'Lorenzo Vannucci' # The full version, including alpha/beta/rc tags diff --git a/setup.cfg b/setup.cfg index b4d9a9a..91e3f10 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = matplotlib-latex-bridge -version = 0.1.0 +version = 0.2.0 author = Lorenzo Vannucci author_email = lore.ucci@gmail.com description = Functions and shortcuts to create latex-ready images from matplotlib diff --git a/src/matplotlib_latex_bridge/version.py b/src/matplotlib_latex_bridge/version.py index aaa7f17..a6c8696 100644 --- a/src/matplotlib_latex_bridge/version.py +++ b/src/matplotlib_latex_bridge/version.py @@ -1,3 +1,3 @@ -version_info = (0, 1, 0) # (major, minor, patch) +version_info = (0, 2, 0) # (major, minor, patch) version = ".".join(str(v) for v in version_info)