paperplot-quantum 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- paperplot/__init__.py +77 -0
- paperplot/core.py +228 -0
- paperplot/data/fonts/GUST-FONT-LICENSE.txt +29 -0
- paperplot/data/fonts/LICENSE.md +22 -0
- paperplot/data/fonts/texgyreheros-bold.otf +0 -0
- paperplot/data/fonts/texgyreheros-bolditalic.otf +0 -0
- paperplot/data/fonts/texgyreheros-italic.otf +0 -0
- paperplot/data/fonts/texgyreheros-regular.otf +0 -0
- paperplot/data/journals.toml +123 -0
- paperplot/fonts.py +45 -0
- paperplot/journals.py +57 -0
- paperplot/layout.py +133 -0
- paperplot/lint.py +156 -0
- paperplot/mplstyle.py +103 -0
- paperplot/palettes.py +190 -0
- paperplot/plots.py +310 -0
- paperplot/preview.py +250 -0
- paperplot/registry.py +111 -0
- paperplot/save.py +99 -0
- paperplot/style.py +194 -0
- paperplot_quantum-0.1.0.dist-info/METADATA +281 -0
- paperplot_quantum-0.1.0.dist-info/RECORD +27 -0
- paperplot_quantum-0.1.0.dist-info/WHEEL +5 -0
- paperplot_quantum-0.1.0.dist-info/licenses/LICENSE +21 -0
- paperplot_quantum-0.1.0.dist-info/licenses/paperplot/data/fonts/GUST-FONT-LICENSE.txt +29 -0
- paperplot_quantum-0.1.0.dist-info/licenses/paperplot/data/fonts/LICENSE.md +22 -0
- paperplot_quantum-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Bundled fonts
|
|
2
|
+
|
|
3
|
+
## TeX Gyre Heros (`texgyreheros-*.otf`, version 2.004)
|
|
4
|
+
|
|
5
|
+
A free, metric-compatible substitute for **Helvetica**, bundled so paperplot
|
|
6
|
+
figures render in a Helvetica/Arial-like face on *any* machine — Arial and
|
|
7
|
+
Helvetica themselves are proprietary and cannot be redistributed.
|
|
8
|
+
|
|
9
|
+
- Family name in matplotlib: **`TeX Gyre Heros`**
|
|
10
|
+
- Version bundled: **2.004** (original, unmodified upstream OpenType releases)
|
|
11
|
+
- Source: GUST e-foundry — https://www.gust.org.pl/projects/e-foundry/tex-gyre/heros
|
|
12
|
+
- License: **GUST Font License (GFL)** — a free, LPPL-based license that permits
|
|
13
|
+
redistribution and bundling. Full verbatim text ships alongside these fonts in
|
|
14
|
+
[`GUST-FONT-LICENSE.txt`](GUST-FONT-LICENSE.txt)
|
|
15
|
+
(also: http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt).
|
|
16
|
+
|
|
17
|
+
Copyright (verbatim from the embedded font metadata):
|
|
18
|
+
|
|
19
|
+
> Copyright 2006, 2009 for TeX Gyre extensions by B. Jackowski and J.M. Nowacki
|
|
20
|
+
> (on behalf of TeX users groups).
|
|
21
|
+
|
|
22
|
+
The fonts are provided "as is" without warranty of any kind.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
paperplot
|