Skip to content

Commit

Permalink
Added installation instructions in readme and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
loreucci committed Jan 19, 2022
1 parent 0f476da commit 931f210
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = matplotlib-latex-bridge
version = 0.1.0
version = 0.2.0
author = Lorenzo Vannucci
author_email = [email protected]
description = Functions and shortcuts to create latex-ready images from matplotlib
Expand Down
2 changes: 1 addition & 1 deletion src/matplotlib_latex_bridge/version.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 931f210

Please sign in to comment.