veridelta 0.2.0__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 (51) hide show
  1. veridelta-0.2.0/.devcontainer/Dockerfile +3 -0
  2. veridelta-0.2.0/.devcontainer/devcontainer.json +27 -0
  3. veridelta-0.2.0/.github/LICENSE_HEADER.txt +2 -0
  4. veridelta-0.2.0/.github/workflows/ci.yml +114 -0
  5. veridelta-0.2.0/.github/workflows/docs.yml +33 -0
  6. veridelta-0.2.0/.github/workflows/release.yml +37 -0
  7. veridelta-0.2.0/.gitignore +33 -0
  8. veridelta-0.2.0/.pre-commit-config.yaml +31 -0
  9. veridelta-0.2.0/.vscode/extensions.json +9 -0
  10. veridelta-0.2.0/.vscode/settings.json +33 -0
  11. veridelta-0.2.0/CHANGELOG.md +15 -0
  12. veridelta-0.2.0/CONTRIBUTING.md +54 -0
  13. veridelta-0.2.0/LICENSE +202 -0
  14. veridelta-0.2.0/Makefile +25 -0
  15. veridelta-0.2.0/NOTICE +2 -0
  16. veridelta-0.2.0/PKG-INFO +145 -0
  17. veridelta-0.2.0/README.md +118 -0
  18. veridelta-0.2.0/SECURITY.md +18 -0
  19. veridelta-0.2.0/docs/api.md +43 -0
  20. veridelta-0.2.0/docs/assets/data/sample_taxi_data.parquet +0 -0
  21. veridelta-0.2.0/docs/configuration.md +81 -0
  22. veridelta-0.2.0/docs/examples/advanced_rules.ipynb +361 -0
  23. veridelta-0.2.0/docs/examples/quickstart.ipynb +205 -0
  24. veridelta-0.2.0/docs/examples/quickstart_cli.ipynb +186 -0
  25. veridelta-0.2.0/docs/examples/yaml_config.ipynb +176 -0
  26. veridelta-0.2.0/docs/index.md +63 -0
  27. veridelta-0.2.0/docs/roadmap.md +23 -0
  28. veridelta-0.2.0/mkdocs.yml +62 -0
  29. veridelta-0.2.0/pyproject.toml +162 -0
  30. veridelta-0.2.0/src/veridelta/__init__.py +27 -0
  31. veridelta-0.2.0/src/veridelta/cli.py +97 -0
  32. veridelta-0.2.0/src/veridelta/config.py +73 -0
  33. veridelta-0.2.0/src/veridelta/datasets.py +88 -0
  34. veridelta-0.2.0/src/veridelta/engine.py +638 -0
  35. veridelta-0.2.0/src/veridelta/exceptions.py +38 -0
  36. veridelta-0.2.0/src/veridelta/models.py +455 -0
  37. veridelta-0.2.0/src/veridelta/py.typed +0 -0
  38. veridelta-0.2.0/tests/__init__.py +2 -0
  39. veridelta-0.2.0/tests/conftest.py +55 -0
  40. veridelta-0.2.0/tests/e2e/test_cli_workflow.py +114 -0
  41. veridelta-0.2.0/tests/integration/test_module_handoff.py +83 -0
  42. veridelta-0.2.0/tests/integration/test_python_api.py +95 -0
  43. veridelta-0.2.0/tests/smoke/__init__.py +2 -0
  44. veridelta-0.2.0/tests/smoke/test_installation.py +64 -0
  45. veridelta-0.2.0/tests/unit/__init__.py +2 -0
  46. veridelta-0.2.0/tests/unit/test_cli.py +141 -0
  47. veridelta-0.2.0/tests/unit/test_config.py +127 -0
  48. veridelta-0.2.0/tests/unit/test_datasets.py +162 -0
  49. veridelta-0.2.0/tests/unit/test_engine.py +384 -0
  50. veridelta-0.2.0/tests/unit/test_models.py +166 -0
  51. veridelta-0.2.0/uv.lock +2534 -0
@@ -0,0 +1,3 @@
1
+ FROM mcr.microsoft.com/devcontainers/python:1-3.10-bookworm
2
+
3
+ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "Veridelta",
3
+ "build": {
4
+ "dockerfile": "Dockerfile"
5
+ },
6
+ "remoteUser": "vscode",
7
+ "updateRemoteUserUID": true,
8
+ "containerEnv": {
9
+ "UV_LINK_MODE": "copy"
10
+ },
11
+ "customizations": {
12
+ "vscode": {
13
+ "settings": {
14
+ "python.defaultInterpreterPath": "${containerWorkspaceFolder}/.venv/bin/python",
15
+ "python.terminal.activateEnvInCurrentTerminal": true
16
+ },
17
+ "extensions": [
18
+ "ms-python.python",
19
+ "charliermarsh.ruff",
20
+ "ms-python.mypy-type-checker",
21
+ "tamasfe.even-better-toml",
22
+ "ms-toolsai.jupyter"
23
+ ]
24
+ }
25
+ },
26
+ "updateContentCommand": "git config --global --add safe.directory ${containerWorkspaceFolder} && make install"
27
+ }
@@ -0,0 +1,2 @@
1
+ Copyright 2026 The Veridelta Contributors
2
+ SPDX-License-Identifier: Apache-2.0
@@ -0,0 +1,114 @@
1
+ name: CI Pipeline
2
+
3
+ on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
+ branches: ["main"]
8
+
9
+ concurrency:
10
+ group: ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress: true
12
+
13
+ jobs:
14
+ static-analysis:
15
+ name: Lint, Format, and Type Check
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout Repository
19
+ uses: actions/checkout@v4
20
+
21
+ - name: Install uv and Set up Python
22
+ uses: astral-sh/setup-uv@v5
23
+ with:
24
+ enable-cache: true
25
+ cache-dependency-glob: "uv.lock"
26
+ python-version: "3.12"
27
+
28
+ - name: Install Dependencies
29
+ run: uv sync --all-extras
30
+
31
+ - name: Run Pre-commit Hooks
32
+ run: uv run pre-commit run --all-files
33
+
34
+ test-smoke:
35
+ name: Smoke Tests
36
+ needs: static-analysis
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - name: Checkout Repository
40
+ uses: actions/checkout@v4
41
+
42
+ - name: Install uv and Set up Python
43
+ uses: astral-sh/setup-uv@v5
44
+ with:
45
+ enable-cache: true
46
+ cache-dependency-glob: "uv.lock"
47
+ python-version: "3.12"
48
+
49
+ - name: Install Dependencies
50
+ run: uv sync --all-extras
51
+
52
+ - name: Execute Smoke Tests
53
+ run: uv run pytest tests/smoke --no-cov
54
+
55
+ test-core:
56
+ name: Core Engine (Py ${{ matrix.python-version }}, ${{ matrix.os }})
57
+ needs: test-smoke
58
+ runs-on: ${{ matrix.os }}
59
+ strategy:
60
+ fail-fast: false # Continue running matrix jobs to identify all failing OS/Python combinations
61
+ matrix:
62
+ os: [ubuntu-latest, macos-latest, windows-latest]
63
+ python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
64
+
65
+ steps:
66
+ - name: Checkout Repository
67
+ uses: actions/checkout@v4
68
+
69
+ - name: Install uv and Set up Python
70
+ uses: astral-sh/setup-uv@v5
71
+ with:
72
+ enable-cache: true
73
+ cache-dependency-glob: "uv.lock"
74
+ python-version: ${{ matrix.python-version }}
75
+
76
+ - name: Install Dependencies
77
+ run: uv sync --all-extras
78
+
79
+ - name: Execute Core Tests (Unit & Integration)
80
+ run: uv run pytest tests/unit tests/integration --cov=src/veridelta --cov-report=xml
81
+
82
+ - name: Upload Coverage to Codecov
83
+ uses: codecov/codecov-action@v5
84
+ with:
85
+ token: ${{ secrets.CODECOV_TOKEN }}
86
+ files: ./coverage.xml
87
+ fail_ci_if_error: false
88
+
89
+ test-e2e:
90
+ name: CLI End-to-End (${{ matrix.os }})
91
+ needs: test-smoke
92
+ runs-on: ${{ matrix.os }}
93
+ strategy:
94
+ fail-fast: false
95
+ matrix:
96
+ os: [ubuntu-latest, windows-latest]
97
+ python-version: ["3.12"]
98
+
99
+ steps:
100
+ - name: Checkout Repository
101
+ uses: actions/checkout@v4
102
+
103
+ - name: Install uv and Set up Python
104
+ uses: astral-sh/setup-uv@v5
105
+ with:
106
+ enable-cache: true
107
+ cache-dependency-glob: "uv.lock"
108
+ python-version: ${{ matrix.python-version }}
109
+
110
+ - name: Install Dependencies
111
+ run: uv sync --all-extras
112
+
113
+ - name: Execute E2E CLI Subprocess Tests
114
+ run: uv run pytest tests/e2e --no-cov
@@ -0,0 +1,33 @@
1
+ name: Deploy Documentation
2
+
3
+ on:
4
+ push:
5
+ branches: ["main"]
6
+
7
+ permissions:
8
+ contents: write
9
+
10
+ env:
11
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
12
+
13
+ jobs:
14
+ deploy-docs:
15
+ name: Build & Deploy MkDocs
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout Repository
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+
23
+ - name: Install uv and Set up Python
24
+ uses: astral-sh/setup-uv@v5
25
+ with:
26
+ enable-cache: false
27
+ python-version: "3.12"
28
+
29
+ - name: Install Dependencies
30
+ run: uv sync --all-extras --group dev
31
+
32
+ - name: Deploy MkDocs to GitHub Pages
33
+ run: uv run mkdocs gh-deploy --force
@@ -0,0 +1,37 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*" # Trigger exclusively when a version tag is pushed (e.g., v0.1.0)
7
+
8
+ jobs:
9
+ build-and-publish:
10
+ name: Build and Publish Artifacts
11
+ runs-on: ubuntu-latest
12
+
13
+ environment:
14
+ name: pypi
15
+ url: https://pypi.org/project/veridelta/
16
+
17
+ permissions:
18
+ id-token: write
19
+ contents: read
20
+
21
+ steps:
22
+ - name: Checkout Code
23
+ uses: actions/checkout@v4
24
+ with:
25
+ fetch-depth: 0
26
+
27
+ - name: Install uv and Set up Python
28
+ uses: astral-sh/setup-uv@v5
29
+ with:
30
+ enable-cache: false
31
+ python-version: "3.12"
32
+
33
+ - name: Build Sdist and Wheel
34
+ run: uv build
35
+
36
+ - name: Publish to PyPI
37
+ run: uv publish
@@ -0,0 +1,33 @@
1
+ # Environments
2
+ .venv/
3
+ env/
4
+ venv/
5
+
6
+ # Python Cache
7
+ __pycache__/
8
+ *.py[cod]
9
+ *.class
10
+ .pytest_cache/
11
+ .mypy_cache/
12
+ .ruff_cache/
13
+
14
+ # Build & Distribution
15
+ build/
16
+ dist/
17
+ *.egg-info/
18
+ .eggs/
19
+
20
+ # Coverage
21
+ .coverage
22
+ htmlcov/
23
+ coverage.xml
24
+
25
+ # OS & Editor
26
+ .DS_Store
27
+ .idea/
28
+ *.swp
29
+
30
+ # Documentation build artifacts
31
+ site/
32
+ .cache/mkdocs/
33
+ .cache/mkdocs-jupyter/
@@ -0,0 +1,31 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.15.11
4
+ hooks:
5
+ - id: ruff
6
+ args: [ --fix ]
7
+ - id: ruff-format
8
+
9
+ - repo: https://github.com/pre-commit/mirrors-mypy
10
+ rev: v1.20.1
11
+ hooks:
12
+ - id: mypy
13
+ additional_dependencies: [polars, pydantic, pyyaml]
14
+ args: [--strict]
15
+
16
+ - repo: https://github.com/Lucas-C/pre-commit-hooks
17
+ rev: v1.5.6
18
+ hooks:
19
+ - id: insert-license
20
+ files: \.py$
21
+ exclude: __pycache__
22
+ args:
23
+ - --license-filepath
24
+ - .github/LICENSE_HEADER.txt
25
+ - --use-current-year
26
+
27
+ - repo: https://github.com/commitizen-tools/commitizen
28
+ rev: v4.13.9
29
+ hooks:
30
+ - id: commitizen
31
+ stages: [commit-msg]
@@ -0,0 +1,9 @@
1
+ {
2
+ "recommendations": [
3
+ "ms-python.python",
4
+ "charliermarsh.ruff",
5
+ "ms-python.mypy-type-checker",
6
+ "tamasfe.even-better-toml",
7
+ "ms-toolsai.jupyter"
8
+ ]
9
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
3
+ "python.terminal.activateEnvInCurrentTerminal": true,
4
+ "python.analysis.typeCheckingMode": "strict",
5
+ "python.testing.pytestEnabled": true,
6
+ "python.testing.unittestEnabled": false,
7
+ "python.testing.pytestArgs": [
8
+ "tests"
9
+ ],
10
+ "editor.formatOnSave": true,
11
+ "editor.rulers": [
12
+ 100
13
+ ],
14
+ "editor.codeActionsOnSave": {
15
+ "source.fixAll.ruff": "explicit",
16
+ "source.organizeImports.ruff": "explicit"
17
+ },
18
+ "[python]": {
19
+ "editor.defaultFormatter": "charliermarsh.ruff"
20
+ },
21
+ "mypy-type-checker.args": [
22
+ "--config-file=${workspaceFolder}/pyproject.toml"
23
+ ],
24
+ "mypy-type-checker.reportingScope": "workspace",
25
+ "mypy-type-checker.importStrategy": "fromEnvironment",
26
+ "files.exclude": {
27
+ "**/__pycache__": true,
28
+ "**/.pytest_cache": true,
29
+ "**/.mypy_cache": true,
30
+ "**/.ruff_cache": true,
31
+ "site/": true
32
+ }
33
+ }
@@ -0,0 +1,15 @@
1
+ ## 0.2.0 (2026-04-30)
2
+
3
+ ### Feat
4
+
5
+ - **core**: migrate to Polars Lazy computation graphs and implement enterprise CI/CD (#4)
6
+ - implement core semantic diffing engine and GitOps configuration (v0.1.0-alpha) (#3)
7
+ - add dynamic output_format for diff artifacts with strict fallback
8
+ - add RELAXED_ORDER schema validation mode
9
+ - implement core diff engine, schema validation, and documentation (#2)
10
+
11
+ ### Fix
12
+
13
+ - update dataset URL to use versioning from package metadata
14
+ - satisfy CI requirements and trigger docs deployment
15
+ - add missing tests directory and modernize uv config
@@ -0,0 +1,54 @@
1
+ # Contributing to Veridelta
2
+
3
+ We welcome contributions to Veridelta. To maintain an enterprise-grade standard, all code must adhere to strict architectural, typing, and formatting guidelines.
4
+
5
+ ## 1. Development Environment
6
+
7
+ We rely on [uv](https://docs.astral.sh/uv/) for deterministic, high-performance environment management. You do not need Docker to contribute; native execution is the recommended path.
8
+
9
+ ### Option A: Native Setup (Recommended)
10
+ Provides native execution performance across macOS, Linux, and Windows.
11
+
12
+ 1. Install [uv](https://docs.astral.sh/uv/getting-started/installation/) following the official instructions for your operating system.
13
+ 2. Clone the repository and navigate into it.
14
+ 3. Install dependencies and arm the local Git hooks using the Makefile:
15
+ ```bash
16
+ make install
17
+ ```
18
+ *(Note: `make install` automatically provisions the virtual environment and installs the `pre-commit` hooks that enforce formatting, licensing, and commit conventions).*
19
+
20
+ ### Option B: Dev Container (Optional)
21
+ For an isolated, containerized workflow, we provide a pre-configured Dev Container.
22
+
23
+ 1. Ensure Docker and VS Code are installed.
24
+ 2. Clone the repository.
25
+ 3. Open the folder in VS Code and select **"Reopen in Container"** when prompted. The environment, dependencies, and Git hooks will configure automatically.
26
+
27
+ ## 2. Development Workflow
28
+
29
+ We strictly follow Trunk-Based Development. **Never commit directly to `main`.**
30
+
31
+ 1. Create a feature branch: `git checkout -b feat/your-feature-name`
32
+ 2. Write your code and tests.
33
+ 3. Verify your changes locally using the Makefile:
34
+ ```bash
35
+ make all # Runs formatting, linting, strict type-checking, and tests
36
+ ```
37
+
38
+ ## 3. Commit Standards
39
+
40
+ We strickly enforce [Conventional Commits](https://www.conventionalcommits.org/). Our `commit-msg` hook will automatically reject any commit that does not follow this structure:
41
+ * `feat:` A new feature.
42
+ * `fix:` A bug fix.
43
+ * `docs:` Documentation changes.
44
+ * `test:` Adding or updating tests.
45
+ * `chore:` Tooling or CI updates.
46
+ * `refactor:` Code changes that neither fix a bug nor add a feature.
47
+
48
+ *Note: During the commit phase, our hooks will also format your code and inject the required Apache-2.0 license headers. If a hook modifies a file or fails, simply stage the updated changes and run `git commit` again.*
49
+
50
+ ## 4. Pull Requests
51
+
52
+ 1. Ensure `make all` passes locally.
53
+ 2. Open a PR against the `main` branch. Ensure your PR title also follows the Conventional Commits format (e.g., `feat: added semantic parser`).
54
+ 3. **The CI Pipeline is the final gatekeeper.** It will automatically test your PR across multiple operating systems and Python versions. If the static analysis or test matrix fails, the PR cannot be merged.
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2026 Nicholas Harder
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,25 @@
1
+ .PHONY: install format lint test all clean
2
+
3
+ install:
4
+ uv sync --all-extras
5
+ uv run pre-commit install
6
+ uv run pre-commit install --hook-type commit-msg
7
+
8
+ format:
9
+ uv run ruff format src/ tests/
10
+ uv run ruff check src/ tests/ --fix --select I
11
+
12
+ lint:
13
+ uv run ruff check src/ tests/
14
+ uv run mypy src/ tests/
15
+
16
+ test:
17
+ uv run pytest tests/ --cov=src/veridelta --cov-report=term-missing
18
+
19
+ all: format lint test
20
+
21
+ clean:
22
+ rm -rf .mypy_cache .pytest_cache .ruff_cache
23
+ rm -rf site/ dist/ build/
24
+ rm -f .coverage coverage.xml
25
+ find . -type d -name "__pycache__" -exec rm -rf {} +
veridelta-0.2.0/NOTICE ADDED
@@ -0,0 +1,2 @@
1
+ Veridelta
2
+ Copyright 2026 The Veridelta Contributors