overity 0.0.1__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 (97) hide show
  1. overity-0.0.1/.github/workflows/publish.yml +38 -0
  2. overity-0.0.1/.gitignore +162 -0
  3. overity-0.0.1/.pre-commit-config.yaml +17 -0
  4. overity-0.0.1/CONTRIBUTING.md +109 -0
  5. overity-0.0.1/PKG-INFO +78 -0
  6. overity-0.0.1/README.md +54 -0
  7. overity-0.0.1/devbox.json +17 -0
  8. overity-0.0.1/devbox.lock +137 -0
  9. overity-0.0.1/docs/assets/img/overity-banner.png +0 -0
  10. overity-0.0.1/docs/assets/img/overity-logo.svg +1 -0
  11. overity-0.0.1/docs/index.md +3 -0
  12. overity-0.0.1/mkdocs.yml +54 -0
  13. overity-0.0.1/pyproject.toml +171 -0
  14. overity-0.0.1/scripts/gen_ref_nav.py +37 -0
  15. overity-0.0.1/scripts/header_check.py +335 -0
  16. overity-0.0.1/src/overity/__init__.py +17 -0
  17. overity-0.0.1/src/overity/__main__.py +17 -0
  18. overity-0.0.1/src/overity/api/__init__.py +97 -0
  19. overity-0.0.1/src/overity/backend/__init__.py +12 -0
  20. overity-0.0.1/src/overity/backend/dataset.py +32 -0
  21. overity-0.0.1/src/overity/backend/flow/__init__.py +540 -0
  22. overity-0.0.1/src/overity/backend/flow/arguments.py +106 -0
  23. overity-0.0.1/src/overity/backend/flow/ctx.py +78 -0
  24. overity-0.0.1/src/overity/backend/flow/environment.py +38 -0
  25. overity-0.0.1/src/overity/backend/inference_agent.py +32 -0
  26. overity-0.0.1/src/overity/backend/method.py +32 -0
  27. overity-0.0.1/src/overity/backend/model.py +33 -0
  28. overity-0.0.1/src/overity/backend/program.py +120 -0
  29. overity-0.0.1/src/overity/backend/report.py +42 -0
  30. overity-0.0.1/src/overity/backend/report_view/__init__.py +12 -0
  31. overity-0.0.1/src/overity/backend/report_view/simple_server.py +32 -0
  32. overity-0.0.1/src/overity/backend/report_view/topt_html.py +464 -0
  33. overity-0.0.1/src/overity/bench/__init__.py +12 -0
  34. overity-0.0.1/src/overity/bench/abstraction.py +55 -0
  35. overity-0.0.1/src/overity/errors.py +118 -0
  36. overity-0.0.1/src/overity/exchange/__init__.py +12 -0
  37. overity-0.0.1/src/overity/exchange/capability_toml.py +85 -0
  38. overity-0.0.1/src/overity/exchange/dataset_package/__init__.py +12 -0
  39. overity-0.0.1/src/overity/exchange/dataset_package/metadata.py +116 -0
  40. overity-0.0.1/src/overity/exchange/dataset_package/package.py +120 -0
  41. overity-0.0.1/src/overity/exchange/execution_target_toml.py +85 -0
  42. overity-0.0.1/src/overity/exchange/inference_agent_package/__init__.py +12 -0
  43. overity-0.0.1/src/overity/exchange/inference_agent_package/metadata.py +122 -0
  44. overity-0.0.1/src/overity/exchange/inference_agent_package/package.py +121 -0
  45. overity-0.0.1/src/overity/exchange/method_common/__init__.py +14 -0
  46. overity-0.0.1/src/overity/exchange/method_common/description_md.py +151 -0
  47. overity-0.0.1/src/overity/exchange/method_common/file_ipynb.py +65 -0
  48. overity-0.0.1/src/overity/exchange/method_common/file_py.py +57 -0
  49. overity-0.0.1/src/overity/exchange/model_package_v1/__init__.py +12 -0
  50. overity-0.0.1/src/overity/exchange/model_package_v1/metadata.py +131 -0
  51. overity-0.0.1/src/overity/exchange/model_package_v1/package.py +117 -0
  52. overity-0.0.1/src/overity/exchange/program_toml.py +137 -0
  53. overity-0.0.1/src/overity/exchange/report_json.py +223 -0
  54. overity-0.0.1/src/overity/frontend/__init__.py +53 -0
  55. overity-0.0.1/src/overity/frontend/dataset/__init__.py +36 -0
  56. overity-0.0.1/src/overity/frontend/dataset/list_cmd.py +67 -0
  57. overity-0.0.1/src/overity/frontend/inference_agent/__init__.py +36 -0
  58. overity-0.0.1/src/overity/frontend/inference_agent/list_cmd.py +65 -0
  59. overity-0.0.1/src/overity/frontend/method/__init__.py +36 -0
  60. overity-0.0.1/src/overity/frontend/method/list_cmd.py +79 -0
  61. overity-0.0.1/src/overity/frontend/model/__init__.py +34 -0
  62. overity-0.0.1/src/overity/frontend/model/list_cmd.py +70 -0
  63. overity-0.0.1/src/overity/frontend/program/__init__.py +40 -0
  64. overity-0.0.1/src/overity/frontend/program/infos.py +58 -0
  65. overity-0.0.1/src/overity/frontend/program/init.py +61 -0
  66. overity-0.0.1/src/overity/frontend/report/__init__.py +36 -0
  67. overity-0.0.1/src/overity/frontend/report/list_cmd.py +51 -0
  68. overity-0.0.1/src/overity/frontend/report/prune.py +49 -0
  69. overity-0.0.1/src/overity/frontend/report/view.py +55 -0
  70. overity-0.0.1/src/overity/frontend/types.py +53 -0
  71. overity-0.0.1/src/overity/frontend/utils/__init__.py +12 -0
  72. overity-0.0.1/src/overity/frontend/utils/table.py +97 -0
  73. overity-0.0.1/src/overity/model/__init__.py +12 -0
  74. overity-0.0.1/src/overity/model/arguments/__init__.py +54 -0
  75. overity-0.0.1/src/overity/model/dataset/__init__.py +12 -0
  76. overity-0.0.1/src/overity/model/dataset/metadata.py +57 -0
  77. overity-0.0.1/src/overity/model/dataset/package.py +29 -0
  78. overity-0.0.1/src/overity/model/general_info/__init__.py +12 -0
  79. overity-0.0.1/src/overity/model/general_info/bench.py +58 -0
  80. overity-0.0.1/src/overity/model/general_info/capability.py +37 -0
  81. overity-0.0.1/src/overity/model/general_info/execution_target.py +38 -0
  82. overity-0.0.1/src/overity/model/general_info/method.py +74 -0
  83. overity-0.0.1/src/overity/model/general_info/program.py +53 -0
  84. overity-0.0.1/src/overity/model/inference_agent/__init__.py +12 -0
  85. overity-0.0.1/src/overity/model/inference_agent/metadata.py +67 -0
  86. overity-0.0.1/src/overity/model/inference_agent/package.py +29 -0
  87. overity-0.0.1/src/overity/model/ml_model/__init__.py +12 -0
  88. overity-0.0.1/src/overity/model/ml_model/metadata.py +75 -0
  89. overity-0.0.1/src/overity/model/ml_model/package.py +32 -0
  90. overity-0.0.1/src/overity/model/report/__init__.py +104 -0
  91. overity-0.0.1/src/overity/model/report/metrics.py +137 -0
  92. overity-0.0.1/src/overity/model/traceability/__init__.py +137 -0
  93. overity-0.0.1/src/overity/storage/__init__.py +12 -0
  94. overity-0.0.1/src/overity/storage/base.py +269 -0
  95. overity-0.0.1/src/overity/storage/local/__init__.py +546 -0
  96. overity-0.0.1/tests/__init__.py +3 -0
  97. overity-0.0.1/todo.txt +3 -0
@@ -0,0 +1,38 @@
1
+ # Inspired by https://blog.pecar.me/automate-hatch-publish
2
+
3
+ name: Publish to PyPI
4
+
5
+ on:
6
+ release:
7
+ types: [published]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ deploy:
14
+
15
+ runs-on: ubuntu-latest
16
+
17
+ environment: release
18
+ permissions:
19
+ id-token: write
20
+
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - name: Set up python
24
+ uses: actions/setup-python@v4
25
+ with:
26
+ python-version: '3.10'
27
+ cache: 'pip'
28
+
29
+ - name: Install dependencies
30
+ run: |
31
+ python -m pip install --upgrade pip
32
+ pip install hatch
33
+
34
+ - name: Build package
35
+ run: hatch build
36
+
37
+ - name: Publish to PyPI
38
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,162 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110
+ .pdm.toml
111
+ .pdm-python
112
+ .pdm-build/
113
+
114
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
+ __pypackages__/
116
+
117
+ # Celery stuff
118
+ celerybeat-schedule
119
+ celerybeat.pid
120
+
121
+ # SageMath parsed files
122
+ *.sage.py
123
+
124
+ # Environments
125
+ .env
126
+ .venv
127
+ env/
128
+ venv/
129
+ ENV/
130
+ env.bak/
131
+ venv.bak/
132
+
133
+ # Spyder project settings
134
+ .spyderproject
135
+ .spyproject
136
+
137
+ # Rope project settings
138
+ .ropeproject
139
+
140
+ # mkdocs documentation
141
+ /site
142
+
143
+ # mypy
144
+ .mypy_cache/
145
+ .dmypy.json
146
+ dmypy.json
147
+
148
+ # Pyre type checker
149
+ .pyre/
150
+
151
+ # pytype static type analyzer
152
+ .pytype/
153
+
154
+ # Cython debug symbols
155
+ cython_debug/
156
+
157
+ # PyCharm
158
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
161
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
+ #.idea/
@@ -0,0 +1,17 @@
1
+ repos:
2
+ - repo: local
3
+ hooks:
4
+ - id: lint
5
+ language: system
6
+ name: "Run linter"
7
+ entry: hatch run lint:code-rules
8
+
9
+ - id: format
10
+ language: system
11
+ name: "Run black formatter"
12
+ entry: hatch run lint:code-format
13
+
14
+ - id: check-headers
15
+ language: system
16
+ name: "Check source headers"
17
+ entry: hatch run lint:code-headers
@@ -0,0 +1,109 @@
1
+ Contributing
2
+ ============
3
+
4
+ Suggest a new feature
5
+ ---------------------
6
+
7
+ If you like to see a new feature, feel free to open an issue. We shall look if it can be planned on an upcoming version if it matches the scheduled roadmap.
8
+
9
+ Submitting code changes
10
+ -----------------------
11
+
12
+ Submitting code changes follow the usual procedure:
13
+
14
+ 1. Fork the repo
15
+ 2. Make your changes
16
+ 3. Make sure your changes follow the required code rules and format, more info below
17
+ 4. Submit a PR
18
+
19
+ Please make sure to attach your PR with an existing issue, or create a new one.
20
+
21
+
22
+ Development
23
+ -----------
24
+
25
+ ### Tools
26
+
27
+ The project uses the following tools:
28
+
29
+ - `hatch`: project management, virtual environment, packaging tools;
30
+ - `pre-commit`: quality assurance for repo focusing on developer experience (DX).
31
+
32
+ You can install these tools (one time only) using pip:
33
+
34
+ ```
35
+ pip install hatch pre-commit
36
+ ```
37
+
38
+ The first time you checkout the repository, make sure to configure `pre-commit` properly:
39
+
40
+ ```
41
+ pre-commit install
42
+ ```
43
+
44
+ ### Environments
45
+
46
+ This project makes an extensive use of hatch's "environments" fulfilling various needs:
47
+
48
+ #### `docs` environment
49
+
50
+ This environment allow to build the project's documentation using `mkdocs`. To build the project documentation, simply run:
51
+
52
+ ```
53
+ hatch run docs:build
54
+ ```
55
+
56
+ Generated documentation shall be available in the `site` output folder.
57
+
58
+
59
+ #### `types` environment
60
+
61
+ This auxiliary environment uses `mypy` for type checking.
62
+
63
+ You can run the type checker using:
64
+
65
+ ```
66
+ hatch run types:check
67
+ ```
68
+
69
+ #### `lint` environment
70
+
71
+ This environment contains the `ruff` linter as well as the `black` formatter. These shall be already run by `pre-commit` when comitting to the repository.
72
+
73
+ Behind the scenes, the `pre-commit` hooks makes use of the following commands:
74
+
75
+ - Lint the code using `ruff`: `hatch run lint:code-rules`
76
+ - Format the code using `black`: `hatch run lint:code-format`
77
+
78
+
79
+ ### File header
80
+
81
+ Please use the following header format for source files:
82
+
83
+ ```
84
+ [Main file title]
85
+ =================
86
+
87
+ **[Month] [year]**
88
+
89
+ - [Your Name] ([your email])
90
+
91
+ > This file is part of the Overity.ai project, and is licensed under
92
+ > the terms of the Apache 2.0 license. See the LICENSE file for more
93
+ > information.
94
+
95
+ Optional file description and documentation
96
+ ```
97
+
98
+ Here is an example:
99
+
100
+ ```
101
+ This file is here for this
102
+ ==========================
103
+
104
+ **August 2025**
105
+
106
+ - John Doe (john.doe@mail.com)
107
+ ```
108
+
109
+ You can omit your mail if you do not want to share it.
overity-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,78 @@
1
+ Metadata-Version: 2.4
2
+ Name: overity
3
+ Version: 0.0.1
4
+ Project-URL: Documentation, https://overity.ai
5
+ Project-URL: Issues, https://github.com/fdmysterious/overity/issues
6
+ Project-URL: Source, https://github.com/fdmysterious/overity
7
+ Author-email: Florian Dupeyron <florian.dupeyron@elsys-design.com>
8
+ License-Expression: Apache-2.0
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3.8
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: Implementation :: CPython
16
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
17
+ Requires-Python: >=3.8
18
+ Requires-Dist: jinja2==3.1.6
19
+ Requires-Dist: jsonschema==4.23.0
20
+ Requires-Dist: nbformat==5.10.4
21
+ Requires-Dist: parsimonious==0.10.0
22
+ Requires-Dist: toml==0.10.2
23
+ Description-Content-Type: text/markdown
24
+
25
+ <p align="center">
26
+ <img src="./docs/assets/img/overity-banner.png" alt="Overity.ai" />
27
+ </p>
28
+
29
+ Overity.ai - MLOps oriented framework for trustworthy Edge-AI
30
+ =============================================================
31
+
32
+ [![PyPI - Version](https://img.shields.io/pypi/v/overity.svg)](https://pypi.org/project/overity)
33
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/overity.svg)](https://pypi.org/project/overity)
34
+
35
+ > **🚧 Overity.ai is currently under heavy development. Initial release is planned for end of 2025. Leave a star to stay informed! 🚧**
36
+
37
+ Overity.ai is a open-source MLOps oriented framework for optimization,
38
+ qualification, and deployment of Edge-AI models in critical systems, focusing
39
+ on traceability and trustworthy AI.
40
+
41
+ It helps you organize training, optimization and validation methods, track
42
+ and version your datasets and models with complete traceability graphs, as well
43
+ as leveraging Hardware-In-The-Loop (HIL) testing to validate embedded use-cases.
44
+
45
+ Whether it's for local development or complex deployments in complete MLOps environments,
46
+ Overity.ai provides all the necessary tools to create the next ground-breaking Edge-AI
47
+ Revoluuuuuuuution! :smile:
48
+
49
+
50
+ Getting started
51
+ ---------------
52
+
53
+ To get started, please refer to the [Getting started](#) guide.
54
+
55
+
56
+ Contributing
57
+ ------------
58
+
59
+ If you want to contribute, please refer to the [contributing](CONTRIBUTING.md) guidelines.
60
+
61
+
62
+ License
63
+ -------
64
+
65
+ This project is licensed under the terms of the terms of the Apache 2.0 license. Please refer to the
66
+ [LICENSE](./LICENSE) file for more information.
67
+
68
+
69
+ Main authors
70
+ ------------
71
+
72
+ - Florian Dupeyron (florian.dupeyron@elsys-design.com) : Project leader and creator
73
+
74
+
75
+ Contact Us
76
+ ----------
77
+
78
+ Please send an email at community@elsys-design.com
@@ -0,0 +1,54 @@
1
+ <p align="center">
2
+ <img src="./docs/assets/img/overity-banner.png" alt="Overity.ai" />
3
+ </p>
4
+
5
+ Overity.ai - MLOps oriented framework for trustworthy Edge-AI
6
+ =============================================================
7
+
8
+ [![PyPI - Version](https://img.shields.io/pypi/v/overity.svg)](https://pypi.org/project/overity)
9
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/overity.svg)](https://pypi.org/project/overity)
10
+
11
+ > **🚧 Overity.ai is currently under heavy development. Initial release is planned for end of 2025. Leave a star to stay informed! 🚧**
12
+
13
+ Overity.ai is a open-source MLOps oriented framework for optimization,
14
+ qualification, and deployment of Edge-AI models in critical systems, focusing
15
+ on traceability and trustworthy AI.
16
+
17
+ It helps you organize training, optimization and validation methods, track
18
+ and version your datasets and models with complete traceability graphs, as well
19
+ as leveraging Hardware-In-The-Loop (HIL) testing to validate embedded use-cases.
20
+
21
+ Whether it's for local development or complex deployments in complete MLOps environments,
22
+ Overity.ai provides all the necessary tools to create the next ground-breaking Edge-AI
23
+ Revoluuuuuuuution! :smile:
24
+
25
+
26
+ Getting started
27
+ ---------------
28
+
29
+ To get started, please refer to the [Getting started](#) guide.
30
+
31
+
32
+ Contributing
33
+ ------------
34
+
35
+ If you want to contribute, please refer to the [contributing](CONTRIBUTING.md) guidelines.
36
+
37
+
38
+ License
39
+ -------
40
+
41
+ This project is licensed under the terms of the terms of the Apache 2.0 license. Please refer to the
42
+ [LICENSE](./LICENSE) file for more information.
43
+
44
+
45
+ Main authors
46
+ ------------
47
+
48
+ - Florian Dupeyron (florian.dupeyron@elsys-design.com) : Project leader and creator
49
+
50
+
51
+ Contact Us
52
+ ----------
53
+
54
+ Please send an email at community@elsys-design.com
@@ -0,0 +1,17 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
3
+ "packages": [
4
+ "hatch@latest",
5
+ "pre-commit@latest"
6
+ ],
7
+ "shell": {
8
+ "init_hook": [
9
+ "echo 'Welcome to devbox!' > /dev/null"
10
+ ],
11
+ "scripts": {
12
+ "test": [
13
+ "echo \"Error: no test specified\" && exit 1"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,137 @@
1
+ {
2
+ "lockfile_version": "1",
3
+ "packages": {
4
+ "github:NixOS/nixpkgs/nixpkgs-unstable": {
5
+ "last_modified": "2025-09-04T15:48:01Z",
6
+ "resolved": "github:NixOS/nixpkgs/0987f8f26d7b889e23a7c533ae6d998b27924899?lastModified=1757000881&narHash=sha256-Cl3ep4eX9Katb2m%2FDJLmbfltPSRaWnVAFtoI%2BVPVDLk%3D"
7
+ },
8
+ "hatch@latest": {
9
+ "last_modified": "2025-07-28T17:09:23Z",
10
+ "resolved": "github:NixOS/nixpkgs/648f70160c03151bc2121d179291337ad6bc564b#hatch",
11
+ "source": "devbox-search",
12
+ "version": "1.14.1",
13
+ "systems": {
14
+ "aarch64-darwin": {
15
+ "outputs": [
16
+ {
17
+ "name": "out",
18
+ "path": "/nix/store/hyrsm4gy2lny5mr2ybrykf0d66inwavi-hatch-1.14.1",
19
+ "default": true
20
+ },
21
+ {
22
+ "name": "dist",
23
+ "path": "/nix/store/blghwr6czadb6y58r3nhis8zsvj6ksv0-hatch-1.14.1-dist"
24
+ }
25
+ ],
26
+ "store_path": "/nix/store/hyrsm4gy2lny5mr2ybrykf0d66inwavi-hatch-1.14.1"
27
+ },
28
+ "aarch64-linux": {
29
+ "outputs": [
30
+ {
31
+ "name": "out",
32
+ "path": "/nix/store/ijbwkxw72glzd94a81aan7r37yd0qxhk-hatch-1.14.1",
33
+ "default": true
34
+ },
35
+ {
36
+ "name": "dist",
37
+ "path": "/nix/store/hradafnl6w3gfpmqib0lkckfq5qfl8yj-hatch-1.14.1-dist"
38
+ }
39
+ ],
40
+ "store_path": "/nix/store/ijbwkxw72glzd94a81aan7r37yd0qxhk-hatch-1.14.1"
41
+ },
42
+ "x86_64-darwin": {
43
+ "outputs": [
44
+ {
45
+ "name": "out",
46
+ "path": "/nix/store/993idmhc92cdv250bslhxdr3dwq0szm6-hatch-1.14.1",
47
+ "default": true
48
+ },
49
+ {
50
+ "name": "dist",
51
+ "path": "/nix/store/2x26fl5i7gm6f357b4lajy1zx5g94s18-hatch-1.14.1-dist"
52
+ }
53
+ ],
54
+ "store_path": "/nix/store/993idmhc92cdv250bslhxdr3dwq0szm6-hatch-1.14.1"
55
+ },
56
+ "x86_64-linux": {
57
+ "outputs": [
58
+ {
59
+ "name": "out",
60
+ "path": "/nix/store/dbw97q4vivr8zzyw473fllx1g94jq4zd-hatch-1.14.1",
61
+ "default": true
62
+ },
63
+ {
64
+ "name": "dist",
65
+ "path": "/nix/store/w3dhmw0acz2kl7fqn19m6m2yjxkk528a-hatch-1.14.1-dist"
66
+ }
67
+ ],
68
+ "store_path": "/nix/store/dbw97q4vivr8zzyw473fllx1g94jq4zd-hatch-1.14.1"
69
+ }
70
+ }
71
+ },
72
+ "pre-commit@latest": {
73
+ "last_modified": "2025-08-11T07:05:29Z",
74
+ "resolved": "github:NixOS/nixpkgs/9585e9192aadc13ec3e49f33f8333bd3cda524df#pre-commit",
75
+ "source": "devbox-search",
76
+ "version": "4.2.0",
77
+ "systems": {
78
+ "aarch64-darwin": {
79
+ "outputs": [
80
+ {
81
+ "name": "out",
82
+ "path": "/nix/store/awyg4wwb7w117sr32zbw453yylzy1sv5-pre-commit-4.2.0",
83
+ "default": true
84
+ },
85
+ {
86
+ "name": "dist",
87
+ "path": "/nix/store/6j8b2k8vcm8ff3fwrwpkxr2q796yqwzl-pre-commit-4.2.0-dist"
88
+ }
89
+ ],
90
+ "store_path": "/nix/store/awyg4wwb7w117sr32zbw453yylzy1sv5-pre-commit-4.2.0"
91
+ },
92
+ "aarch64-linux": {
93
+ "outputs": [
94
+ {
95
+ "name": "out",
96
+ "path": "/nix/store/z7aiyfndjqrzk0igjdzjf2sab137083p-pre-commit-4.2.0",
97
+ "default": true
98
+ },
99
+ {
100
+ "name": "dist",
101
+ "path": "/nix/store/mr9jivn3fc4g4ncb25ij73481ilmba4k-pre-commit-4.2.0-dist"
102
+ }
103
+ ],
104
+ "store_path": "/nix/store/z7aiyfndjqrzk0igjdzjf2sab137083p-pre-commit-4.2.0"
105
+ },
106
+ "x86_64-darwin": {
107
+ "outputs": [
108
+ {
109
+ "name": "out",
110
+ "path": "/nix/store/mx4vjrjzfxsarwkx12ddvn18kvphsds4-pre-commit-4.2.0",
111
+ "default": true
112
+ },
113
+ {
114
+ "name": "dist",
115
+ "path": "/nix/store/hgf3j4hj0ng2xwq71n5a8j02y6zha5gq-pre-commit-4.2.0-dist"
116
+ }
117
+ ],
118
+ "store_path": "/nix/store/mx4vjrjzfxsarwkx12ddvn18kvphsds4-pre-commit-4.2.0"
119
+ },
120
+ "x86_64-linux": {
121
+ "outputs": [
122
+ {
123
+ "name": "out",
124
+ "path": "/nix/store/h9f0ac5z0scz7fp4p8xznw2m04xx45in-pre-commit-4.2.0",
125
+ "default": true
126
+ },
127
+ {
128
+ "name": "dist",
129
+ "path": "/nix/store/k9svwjpac38jf5c1zlxdhvhpk3ljf57r-pre-commit-4.2.0-dist"
130
+ }
131
+ ],
132
+ "store_path": "/nix/store/h9f0ac5z0scz7fp4p8xznw2m04xx45in-pre-commit-4.2.0"
133
+ }
134
+ }
135
+ }
136
+ }
137
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 -4 144.3 148.67" fill="none" stroke="white" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"><g transform="translate(-681.57 -586.58)"><g stroke-linejoin="round"><path d="m681.57 628.61 64.297 102.61 22.014 0.0333-53.011-84.942 56.511 0.61181-10.534-18.656z"></path><path d="m714.89 646.31 22.343 0.25162 29.257 47.704 47.125-84.42 12.26 18.489-57.998 102.91z"></path><path d="m687.02 615.48-5.457 13.13 79.277-0.34273 6.7519-13.13z"></path></g><path d="m760.84 628.26 6.7519-13.13 11.018 21.047-7.2361 10.739z"></path><path d="m759.46 682.81 7.025 11.454 47.125-84.42-13.098-0.13228z"></path><circle cx="786.11" cy="598.01" r="11.433" stroke-linejoin="bevel" fill="currentColor"></circle></g></svg>
@@ -0,0 +1,3 @@
1
+ # Hello world!
2
+
3
+ This is a test package documentation.
@@ -0,0 +1,54 @@
1
+ site_name: "Overity.ai"
2
+ copyright: "2025, crafted with ♥ at <a href='https://www.advans-group.com'>Advans group</a>"
3
+
4
+ theme:
5
+ name: material
6
+ logo: assets/img/overity-logo.svg
7
+ palette:
8
+ primary: black
9
+ scheme: slate
10
+
11
+
12
+ use_directory_urls: false
13
+
14
+ plugins:
15
+ - search
16
+ - roamlinks
17
+ - mkdocstrings:
18
+ handlers:
19
+ python:
20
+ paths: [src]
21
+ import:
22
+ - https://docs.python.org/3/objects.inv
23
+ options:
24
+ heading_level: 1
25
+ inherited_members: true
26
+ merge_init_into_class: true
27
+ parameter_headings: true
28
+ separate_signature: true
29
+ show_root_heading: true
30
+ show_root_full_path: false
31
+ show_signature_annotations: true
32
+ show_symbol_type_heading: true
33
+ siganture_crossrefs: true
34
+ summary: true
35
+
36
+ - gen-files:
37
+ scripts:
38
+ - scripts/gen_ref_nav.py
39
+
40
+ - literate-nav:
41
+ nav_file: SUMMARY.md
42
+
43
+ markdown_extensions:
44
+ - admonition
45
+ - footnotes
46
+ - pymdownx.superfences:
47
+ custom_fences:
48
+ - name: mermaid
49
+ class: mermaid
50
+ format: !!python/name:pymdownx.superfences.fence_code_format
51
+ - pymdownx.arithmatex:
52
+ generic: true
53
+
54
+ # TODO # Add mathjax stuff?