checkup 0.5.2__tar.gz → 0.5.3__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.
- {checkup-0.5.2 → checkup-0.5.3}/PKG-INFO +10 -5
- {checkup-0.5.2 → checkup-0.5.3}/README.md +9 -4
- {checkup-0.5.2 → checkup-0.5.3}/pyproject.toml +1 -1
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/run.py +2 -2
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/config.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/init.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/plugins.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/schema.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/_common.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/create.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/edit.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/executor.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/utils.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/config.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/env.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/io.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/models.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/schema.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/errors.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/batch_executors.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/metric_calculator.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/provider_executor.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/state.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/graph.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/hub.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/base.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/console.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/csv_file.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/database.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/html_report.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/measurement.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/metric.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/provider.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/providers/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/providers/tags.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/registry/__init__.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/registry/discovery.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/templates/metrics_report.html +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/types.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/utils.py +0 -0
- {checkup-0.5.2 → checkup-0.5.3}/src/checkup/validators.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: checkup
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: Computational governance framework for measuring data product health
|
|
5
5
|
Author: Jan Vanbuel
|
|
6
6
|
Author-email: Jan Vanbuel <jan.vanbuel@ond.vlaanderen.be>
|
|
@@ -20,12 +20,17 @@ Project-URL: Issues, https://github.com/datamindedbe/checkup/issues
|
|
|
20
20
|
Project-URL: Source, https://github.com/datamindedbe/checkup
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
<p align="center">
|
|
24
|
+
<img src="https://raw.githubusercontent.com/datamindedbe/checkup/main/assets/banner.png" alt="CheckUp" width="100%" />
|
|
25
|
+
</p>
|
|
24
26
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
+
<h3 align="center">Computational Governance Framework</h3>
|
|
28
|
+
<p align="center">for measuring <b>data product health</b></p>
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
<p align="center">
|
|
31
|
+
<a href="https://pypi.org/project/checkup/"><img src="https://img.shields.io/pypi/v/checkup" alt="PyPI version" /></a>
|
|
32
|
+
<a href="https://pypi.org/project/checkup/"><img src="https://img.shields.io/pypi/pyversions/checkup" alt="Python versions" /></a>
|
|
33
|
+
</p>
|
|
29
34
|
|
|
30
35
|
## Plugins
|
|
31
36
|
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/datamindedbe/checkup/main/assets/banner.png" alt="CheckUp" width="100%" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
<h3 align="center">Computational Governance Framework</h3>
|
|
6
|
+
<p align="center">for measuring <b>data product health</b></p>
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
<p align="center">
|
|
9
|
+
<a href="https://pypi.org/project/checkup/"><img src="https://img.shields.io/pypi/v/checkup" alt="PyPI version" /></a>
|
|
10
|
+
<a href="https://pypi.org/project/checkup/"><img src="https://img.shields.io/pypi/pyversions/checkup" alt="Python versions" /></a>
|
|
11
|
+
</p>
|
|
7
12
|
|
|
8
13
|
## Plugins
|
|
9
14
|
|
|
@@ -43,8 +43,8 @@ def run(
|
|
|
43
43
|
multiprocessing: Annotated[
|
|
44
44
|
bool,
|
|
45
45
|
typer.Option(
|
|
46
|
-
"--multiprocessing",
|
|
47
|
-
help="
|
|
46
|
+
"--multiprocessing/--no-multiprocessing",
|
|
47
|
+
help="Use multiprocessing. Disable with --no-multiprocessing to run sequentially without subprocesses",
|
|
48
48
|
),
|
|
49
49
|
] = True,
|
|
50
50
|
verbose: Annotated[
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|