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.
Files changed (48) hide show
  1. {checkup-0.5.2 → checkup-0.5.3}/PKG-INFO +10 -5
  2. {checkup-0.5.2 → checkup-0.5.3}/README.md +9 -4
  3. {checkup-0.5.2 → checkup-0.5.3}/pyproject.toml +1 -1
  4. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/run.py +2 -2
  5. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/__init__.py +0 -0
  6. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/__init__.py +0 -0
  7. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/__init__.py +0 -0
  8. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/config.py +0 -0
  9. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/init.py +0 -0
  10. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/plugins.py +0 -0
  11. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/commands/schema.py +0 -0
  12. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/__init__.py +0 -0
  13. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/_common.py +0 -0
  14. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/create.py +0 -0
  15. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/config_wizard/edit.py +0 -0
  16. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/executor.py +0 -0
  17. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/cli/utils.py +0 -0
  18. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/config.py +0 -0
  19. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/__init__.py +0 -0
  20. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/env.py +0 -0
  21. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/io.py +0 -0
  22. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/models.py +0 -0
  23. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/configuration/schema.py +0 -0
  24. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/errors.py +0 -0
  25. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/__init__.py +0 -0
  26. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/batch_executors.py +0 -0
  27. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/metric_calculator.py +0 -0
  28. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/provider_executor.py +0 -0
  29. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/executor/state.py +0 -0
  30. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/graph.py +0 -0
  31. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/hub.py +0 -0
  32. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/__init__.py +0 -0
  33. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/base.py +0 -0
  34. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/console.py +0 -0
  35. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/csv_file.py +0 -0
  36. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/database.py +0 -0
  37. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/materializers/html_report.py +0 -0
  38. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/measurement.py +0 -0
  39. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/metric.py +0 -0
  40. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/provider.py +0 -0
  41. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/providers/__init__.py +0 -0
  42. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/providers/tags.py +0 -0
  43. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/registry/__init__.py +0 -0
  44. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/registry/discovery.py +0 -0
  45. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/templates/metrics_report.html +0 -0
  46. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/types.py +0 -0
  47. {checkup-0.5.2 → checkup-0.5.3}/src/checkup/utils.py +0 -0
  48. {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.2
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
- # CheckUp
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
- [![PyPI version](https://img.shields.io/pypi/v/checkup)](https://pypi.org/project/checkup/)
26
- [![Python versions](https://img.shields.io/pypi/pyversions/checkup)](https://pypi.org/project/checkup/)
27
+ <h3 align="center">Computational Governance Framework</h3>
28
+ <p align="center">for measuring <b>data product health</b></p>
27
29
 
28
- Computational governance framework for measuring data product health.
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
- # CheckUp
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
- [![PyPI version](https://img.shields.io/pypi/v/checkup)](https://pypi.org/project/checkup/)
4
- [![Python versions](https://img.shields.io/pypi/pyversions/checkup)](https://pypi.org/project/checkup/)
5
+ <h3 align="center">Computational Governance Framework</h3>
6
+ <p align="center">for measuring <b>data product health</b></p>
5
7
 
6
- Computational governance framework for measuring data product health.
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
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "checkup"
3
- version = "0.5.2"
3
+ version = "0.5.3"
4
4
  description = "Computational governance framework for measuring data product health"
5
5
  readme = "README.md"
6
6
  authors = [{ name = "Jan Vanbuel", email = "jan.vanbuel@ond.vlaanderen.be" }]
@@ -43,8 +43,8 @@ def run(
43
43
  multiprocessing: Annotated[
44
44
  bool,
45
45
  typer.Option(
46
- "--multiprocessing",
47
- help="When disabled, run sequentially without subprocesses",
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