checkup 0.2.8__tar.gz → 0.2.9__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 (23) hide show
  1. {checkup-0.2.8 → checkup-0.2.9}/PKG-INFO +2 -4
  2. {checkup-0.2.8 → checkup-0.2.9}/README.md +1 -3
  3. {checkup-0.2.8 → checkup-0.2.9}/pyproject.toml +1 -1
  4. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/__init__.py +0 -0
  5. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/config.py +0 -0
  6. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/errors.py +0 -0
  7. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/executor.py +0 -0
  8. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/graph.py +0 -0
  9. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/hub.py +0 -0
  10. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/materializers/__init__.py +0 -0
  11. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/materializers/base.py +0 -0
  12. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/materializers/console.py +0 -0
  13. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/materializers/csv_file.py +0 -0
  14. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/materializers/database.py +0 -0
  15. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/materializers/html_report.py +0 -0
  16. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/metric.py +0 -0
  17. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/provider.py +0 -0
  18. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/providers/__init__.py +0 -0
  19. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/providers/tags.py +0 -0
  20. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/templates/metrics_report.html +0 -0
  21. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/types.py +0 -0
  22. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/utils.py +0 -0
  23. {checkup-0.2.8 → checkup-0.2.9}/src/checkup/validators.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: checkup
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: Add your description here
5
5
  Author: Jan Vanbuel
6
6
  Author-email: Jan Vanbuel <jan.vanbuel@ond.vlaanderen.be>
@@ -14,12 +14,10 @@ Description-Content-Type: text/markdown
14
14
 
15
15
  ![CheckUp](images/horseshoe.png)
16
16
 
17
- Computational governance framework for measuring data product health.
17
+ Computational governance framework for measuring data product health.
18
18
 
19
19
  ### Key Concepts
20
20
 
21
21
  - **Metrics** - Calculate values from context
22
22
  - **Providers** - Functions that enrich context (shared across metrics)
23
23
  - **Materializers** - Output formats (Console, HTML, CSV, etc.)
24
-
25
-
@@ -1,11 +1,9 @@
1
1
  ![CheckUp](images/horseshoe.png)
2
2
 
3
- Computational governance framework for measuring data product health.
3
+ Computational governance framework for measuring data product health.
4
4
 
5
5
  ### Key Concepts
6
6
 
7
7
  - **Metrics** - Calculate values from context
8
8
  - **Providers** - Functions that enrich context (shared across metrics)
9
9
  - **Materializers** - Output formats (Console, HTML, CSV, etc.)
10
-
11
-
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "checkup"
3
- version = "0.2.8"
3
+ version = "0.2.9"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  authors = [{ name = "Jan Vanbuel", email = "jan.vanbuel@ond.vlaanderen.be" }]
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