Skip to content

Commit 931f210

Browse files
committed
Added installation instructions in readme and bumped version
1 parent 0f476da commit 931f210

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,22 @@ Example:
1111
![example](https://github.com/loreucci/matplotlib-latex-bridge/raw/master/mlb-example.png)
1212

1313

14+
## Install
15+
16+
The latest stable version can be installed via pip:
17+
18+
```commandline
19+
pip install matplotlib-latex-bridge
20+
```
21+
22+
Otherwise, the library can be installed from sources:
23+
24+
```commandline
25+
git clone https://github.com/loreucci/matplotlib-latex-bridge.git
26+
cd matplotlib-latex-bridge
27+
pip install -e .
28+
```
29+
1430
## Quickstart
1531

1632
Initialize the library using one of the presets provided:

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# -- Project information -----------------------------------------------------
1212

1313
project = 'matplotlib-latex-bridge'
14-
copyright = '2021, Lorenzo Vannucci'
14+
copyright = '2022, Lorenzo Vannucci'
1515
author = 'Lorenzo Vannucci'
1616

1717
# The full version, including alpha/beta/rc tags

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = matplotlib-latex-bridge
3-
version = 0.1.0
3+
version = 0.2.0
44
author = Lorenzo Vannucci
55
author_email = [email protected]
66
description = Functions and shortcuts to create latex-ready images from matplotlib
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version_info = (0, 1, 0) # (major, minor, patch)
1+
version_info = (0, 2, 0) # (major, minor, patch)
22

33
version = ".".join(str(v) for v in version_info)

0 commit comments

Comments
 (0)