mgplot 0.1.4__tar.gz → 0.1.5__tar.gz
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.
- {mgplot-0.1.4 → mgplot-0.1.5}/PKG-INFO +3 -11
- {mgplot-0.1.4 → mgplot-0.1.5}/build-test.sh +7 -6
- {mgplot-0.1.4 → mgplot-0.1.5}/pyproject.toml +11 -9
- {mgplot-0.1.4 → mgplot-0.1.5}/uv.lock +21 -13
- mgplot-0.1.4/docs/index.html +0 -7
- mgplot-0.1.4/docs/mgplot/bar_plot.html +0 -504
- mgplot-0.1.4/docs/mgplot/finalise_plot.html +0 -818
- mgplot-0.1.4/docs/mgplot/line_plot.html +0 -719
- mgplot-0.1.4/docs/mgplot/postcovid_plot.html +0 -594
- mgplot-0.1.4/docs/mgplot/revision_plot.html +0 -404
- mgplot-0.1.4/docs/mgplot/run_plot.html +0 -626
- mgplot-0.1.4/docs/mgplot/seastrend_plot.html +0 -535
- mgplot-0.1.4/docs/mgplot/summary_plot.html +0 -641
- mgplot-0.1.4/docs/mgplot.html +0 -2936
- mgplot-0.1.4/docs/search.js +0 -46
- {mgplot-0.1.4 → mgplot-0.1.5}/.gitignore +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/CHANGELOG.md +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/LICENSE +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/README.md +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/build-docs.sh +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/__init__.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/bar_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/colors.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/date_utils.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/finalise_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/finalisers.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/growth_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/kw_type_checking.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/line_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/lint-all.sh +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/multi_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/postcovid_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/py.typed +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/revision_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/run_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/seastrend_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/settings.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/summary_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/test.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/utilities.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/zz-test-data/ocr_rba.csv +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/zz-test-data/revisions.csv +0 -0
- {mgplot-0.1.4 → mgplot-0.1.5}/src/mgplot/zz-test-data/summary.csv +0 -0
|
@@ -1,24 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mgplot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: mgplot is a time-series/PeriodIndex frontend for matplotlib
|
|
5
|
-
Project-URL: Repository, https://github.com/bpalmer4/mgplot
|
|
6
|
-
Project-URL: Homepage, https://github.com/bpalmer4/mgplot
|
|
5
|
+
Project-URL: Repository, https://github.com/bpalmer4/mgplot
|
|
6
|
+
Project-URL: Homepage, https://github.com/bpalmer4/mgplot
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Requires-Python: >=3.12
|
|
9
|
-
Requires-Dist: black
|
|
10
9
|
Requires-Dist: matplotlib
|
|
11
|
-
Requires-Dist: mypy
|
|
12
10
|
Requires-Dist: numpy
|
|
13
|
-
Requires-Dist: numpy-typing
|
|
14
11
|
Requires-Dist: pandas
|
|
15
|
-
Requires-Dist: pandas-stubs
|
|
16
12
|
Requires-Dist: pathlib
|
|
17
|
-
Requires-Dist: pdoc
|
|
18
|
-
Requires-Dist: pylint
|
|
19
|
-
Requires-Dist: ruff
|
|
20
13
|
Requires-Dist: tabulate
|
|
21
|
-
Requires-Dist: types-tabulate
|
|
22
14
|
Requires-Dist: typing
|
|
23
15
|
Description-Content-Type: text/markdown
|
|
24
16
|
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
# make sure the version number is correct:
|
|
3
3
|
# ~/mgplot/pyproject.toml
|
|
4
4
|
|
|
5
|
-
# --- cd mgplot home and
|
|
5
|
+
# --- cd mgplot home and get ready
|
|
6
6
|
cd ~/mgplot
|
|
7
|
+
uv pip uninstall mgplot
|
|
7
8
|
deactivate
|
|
8
|
-
source .venv/bin/activate
|
|
9
9
|
|
|
10
10
|
# --- clean out the dist folder
|
|
11
11
|
if [ ! -d ./dist ]; then
|
|
@@ -15,13 +15,14 @@ if [ -n "$(ls -A ./dist 2>/dev/null)" ]; then
|
|
|
15
15
|
rm ./dist/*
|
|
16
16
|
fi
|
|
17
17
|
|
|
18
|
-
# ---
|
|
19
|
-
|
|
20
|
-
uv sync
|
|
18
|
+
# --- sync and build
|
|
19
|
+
uv lock --upgrade # --upgrade to get the latest dependencies
|
|
20
|
+
uv sync --no-dev # --no-dev to avoid installing dev dependencies
|
|
21
21
|
uv build
|
|
22
22
|
|
|
23
23
|
# --- install new mgplot locally
|
|
24
|
-
uv
|
|
24
|
+
uv sync # install with the development dependencies
|
|
25
|
+
uv pip install dist/mgplot*gz # add in the new package
|
|
25
26
|
|
|
26
27
|
# --- build documentation
|
|
27
28
|
~/mgplot/build-docs.sh
|
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["hatchling"]
|
|
3
|
-
build-backend = "hatchling.build"
|
|
4
|
-
|
|
5
1
|
[project]
|
|
6
2
|
name = "mgplot"
|
|
7
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.5"
|
|
8
4
|
description = "mgplot is a time-series/PeriodIndex frontend for matplotlib"
|
|
9
5
|
readme = "README.md"
|
|
10
6
|
requires-python = ">=3.12"
|
|
@@ -19,14 +15,17 @@ dependencies = [
|
|
|
19
15
|
"numpy",
|
|
20
16
|
"pandas",
|
|
21
17
|
"tabulate",
|
|
18
|
+
]
|
|
22
19
|
|
|
23
|
-
|
|
20
|
+
[dependency-groups]
|
|
21
|
+
dev = [
|
|
22
|
+
# - tools
|
|
24
23
|
"black",
|
|
25
24
|
"mypy",
|
|
26
25
|
"pdoc",
|
|
27
26
|
"pylint",
|
|
28
27
|
"ruff",
|
|
29
|
-
|
|
28
|
+
|
|
30
29
|
# - typing
|
|
31
30
|
"pandas-stubs",
|
|
32
31
|
"numpy-typing",
|
|
@@ -34,6 +33,9 @@ dependencies = [
|
|
|
34
33
|
]
|
|
35
34
|
|
|
36
35
|
[project.urls]
|
|
37
|
-
Repository = "https://github.com/bpalmer4/mgplot
|
|
38
|
-
Homepage = "https://github.com/bpalmer4/mgplot
|
|
36
|
+
Repository = "https://github.com/bpalmer4/mgplot"
|
|
37
|
+
Homepage = "https://github.com/bpalmer4/mgplot"
|
|
39
38
|
|
|
39
|
+
[build-system]
|
|
40
|
+
requires = ["hatchling"]
|
|
41
|
+
build-backend = "hatchling.build"
|
|
@@ -298,41 +298,49 @@ wheels = [
|
|
|
298
298
|
|
|
299
299
|
[[package]]
|
|
300
300
|
name = "mgplot"
|
|
301
|
-
version = "0.1.
|
|
301
|
+
version = "0.1.5"
|
|
302
302
|
source = { editable = "." }
|
|
303
303
|
dependencies = [
|
|
304
|
-
{ name = "black" },
|
|
305
304
|
{ name = "matplotlib" },
|
|
306
|
-
{ name = "mypy" },
|
|
307
305
|
{ name = "numpy" },
|
|
308
|
-
{ name = "numpy-typing" },
|
|
309
306
|
{ name = "pandas" },
|
|
310
|
-
{ name = "pandas-stubs" },
|
|
311
307
|
{ name = "pathlib" },
|
|
308
|
+
{ name = "tabulate" },
|
|
309
|
+
{ name = "typing" },
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[package.dev-dependencies]
|
|
313
|
+
dev = [
|
|
314
|
+
{ name = "black" },
|
|
315
|
+
{ name = "mypy" },
|
|
316
|
+
{ name = "numpy-typing" },
|
|
317
|
+
{ name = "pandas-stubs" },
|
|
312
318
|
{ name = "pdoc" },
|
|
313
319
|
{ name = "pylint" },
|
|
314
320
|
{ name = "ruff" },
|
|
315
|
-
{ name = "tabulate" },
|
|
316
321
|
{ name = "types-tabulate" },
|
|
317
|
-
{ name = "typing" },
|
|
318
322
|
]
|
|
319
323
|
|
|
320
324
|
[package.metadata]
|
|
321
325
|
requires-dist = [
|
|
322
|
-
{ name = "black" },
|
|
323
326
|
{ name = "matplotlib" },
|
|
324
|
-
{ name = "mypy" },
|
|
325
327
|
{ name = "numpy" },
|
|
326
|
-
{ name = "numpy-typing" },
|
|
327
328
|
{ name = "pandas" },
|
|
328
|
-
{ name = "pandas-stubs" },
|
|
329
329
|
{ name = "pathlib" },
|
|
330
|
+
{ name = "tabulate" },
|
|
331
|
+
{ name = "typing" },
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[package.metadata.requires-dev]
|
|
335
|
+
dev = [
|
|
336
|
+
{ name = "black" },
|
|
337
|
+
{ name = "mypy" },
|
|
338
|
+
{ name = "numpy-typing" },
|
|
339
|
+
{ name = "pandas-stubs" },
|
|
330
340
|
{ name = "pdoc" },
|
|
331
341
|
{ name = "pylint" },
|
|
332
342
|
{ name = "ruff" },
|
|
333
|
-
{ name = "tabulate" },
|
|
334
343
|
{ name = "types-tabulate" },
|
|
335
|
-
{ name = "typing" },
|
|
336
344
|
]
|
|
337
345
|
|
|
338
346
|
[[package]]
|