File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# mpl-probscale
2
+
2
3
Real probability scales for matplotlib
3
4
4
5
![ Code Style] ( https://github.com/matplotlib/mpl-probscale/workflows/black/badge.svg )
@@ -7,7 +8,6 @@ Real probability scales for matplotlib
7
8
![ Basic Tests] ( https://github.com/matplotlib/mpl-probscale/workflows/Basic%20unit%20tests/badge.svg )
8
9
![ Image Comparisons] ( https://github.com/matplotlib/mpl-probscale/workflows/Image%20comparison%20tests/badge.svg )
9
10
10
-
11
11
[ Sphinx Docs] ( http://matplotlib.org/mpl-probscale/ )
12
12
13
13
## Installation
@@ -24,7 +24,7 @@ Official releases are available through the conda-forge channel or pip
24
24
25
25
This is a pure-python package, so building from source is easy on all platforms:
26
26
27
- ```
27
+ ``` shell
28
28
git clone
[email protected] :matplotlib/mpl-probscale.git
29
29
cd mpl-probscale
30
30
pip install -e .
44
44
45
45
In the next release, this depedency will be made optional.
46
46
47
-
48
47
## Quick start
49
48
50
49
Simply importing ` probscale ` lets you use probability scales in your matplotlib figures:
Original file line number Diff line number Diff line change 4
4
import re
5
5
from setuptools import setup , find_packages
6
6
7
+
7
8
def search (substr : str , content : str ):
8
9
found = re .search (substr , content )
9
10
if found :
You can’t perform that action at this time.
0 commit comments