mintmark 0.1.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 (139) hide show
  1. mintmark-0.1.1/.gitignore +29 -0
  2. mintmark-0.1.1/CHANGELOG.md +137 -0
  3. mintmark-0.1.1/LICENSE +201 -0
  4. mintmark-0.1.1/NOTICE +14 -0
  5. mintmark-0.1.1/PKG-INFO +375 -0
  6. mintmark-0.1.1/README.md +355 -0
  7. mintmark-0.1.1/assets/brand/mintmark-logo.png +0 -0
  8. mintmark-0.1.1/assets/brand/mintmark-logo.svg +57 -0
  9. mintmark-0.1.1/assets/denylist/institutions-tr.txt +88 -0
  10. mintmark-0.1.1/assets/readme/family-topology.png +0 -0
  11. mintmark-0.1.1/assets/readme/family-topology.svg +44 -0
  12. mintmark-0.1.1/assets/readme/mint-pipeline.png +0 -0
  13. mintmark-0.1.1/assets/readme/mint-pipeline.svg +52 -0
  14. mintmark-0.1.1/assets/tables/CHECKSUMS +2 -0
  15. mintmark-0.1.1/assets/tables/balances.json +1041 -0
  16. mintmark-0.1.1/assets/tables/txn_amounts.json +1041 -0
  17. mintmark-0.1.1/packs/example/README.md +9 -0
  18. mintmark-0.1.1/packs/example/fields/customer.yaml +51 -0
  19. mintmark-0.1.1/packs/example/fields/transaction.yaml +42 -0
  20. mintmark-0.1.1/packs/example/pack.yaml +9 -0
  21. mintmark-0.1.1/packs/example/recipes/demo.yaml +11 -0
  22. mintmark-0.1.1/packs/example/templates/txn_descriptions/set.yaml +13 -0
  23. mintmark-0.1.1/pyproject.toml +139 -0
  24. mintmark-0.1.1/schemas/manifest.schema.json +351 -0
  25. mintmark-0.1.1/schemas/pack.schema.json +310 -0
  26. mintmark-0.1.1/src/mintmark/__init__.py +29 -0
  27. mintmark-0.1.1/src/mintmark/annotate/__init__.py +52 -0
  28. mintmark-0.1.1/src/mintmark/annotate/render.py +131 -0
  29. mintmark-0.1.1/src/mintmark/annotate/sidecar.py +85 -0
  30. mintmark-0.1.1/src/mintmark/annotate/spans.py +152 -0
  31. mintmark-0.1.1/src/mintmark/annotate/taxonomy.py +132 -0
  32. mintmark-0.1.1/src/mintmark/api.py +34 -0
  33. mintmark-0.1.1/src/mintmark/cli.py +401 -0
  34. mintmark-0.1.1/src/mintmark/emit/__init__.py +24 -0
  35. mintmark-0.1.1/src/mintmark/emit/canonical.py +89 -0
  36. mintmark-0.1.1/src/mintmark/emit/csv_writer.py +51 -0
  37. mintmark-0.1.1/src/mintmark/emit/writer.py +80 -0
  38. mintmark-0.1.1/src/mintmark/engine/__init__.py +31 -0
  39. mintmark-0.1.1/src/mintmark/engine/draws.py +173 -0
  40. mintmark-0.1.1/src/mintmark/engine/fold.py +62 -0
  41. mintmark-0.1.1/src/mintmark/engine/prng.py +62 -0
  42. mintmark-0.1.1/src/mintmark/engine/records.py +205 -0
  43. mintmark-0.1.1/src/mintmark/engine/streams.py +126 -0
  44. mintmark-0.1.1/src/mintmark/engine/tables.py +142 -0
  45. mintmark-0.1.1/src/mintmark/engine/templates.py +346 -0
  46. mintmark-0.1.1/src/mintmark/identifiers/__init__.py +49 -0
  47. mintmark-0.1.1/src/mintmark/identifiers/email.py +84 -0
  48. mintmark-0.1.1/src/mintmark/identifiers/iban.py +93 -0
  49. mintmark-0.1.1/src/mintmark/identifiers/pan.py +66 -0
  50. mintmark-0.1.1/src/mintmark/identifiers/phone.py +64 -0
  51. mintmark-0.1.1/src/mintmark/identifiers/policy.py +31 -0
  52. mintmark-0.1.1/src/mintmark/identifiers/tckn.py +61 -0
  53. mintmark-0.1.1/src/mintmark/identifiers/vkn.py +59 -0
  54. mintmark-0.1.1/src/mintmark/lexicons/__init__.py +13 -0
  55. mintmark-0.1.1/src/mintmark/lexicons/data/given_names_tr.yaml +65 -0
  56. mintmark-0.1.1/src/mintmark/lexicons/data/occupations_tr.yaml +28 -0
  57. mintmark-0.1.1/src/mintmark/lexicons/data/provinces_tr.yaml +167 -0
  58. mintmark-0.1.1/src/mintmark/lexicons/data/special_descriptors.yaml +138 -0
  59. mintmark-0.1.1/src/mintmark/lexicons/data/street_parts_tr.yaml +33 -0
  60. mintmark-0.1.1/src/mintmark/lexicons/data/surnames_tr.yaml +53 -0
  61. mintmark-0.1.1/src/mintmark/lexicons/denylist.py +101 -0
  62. mintmark-0.1.1/src/mintmark/manifest/__init__.py +46 -0
  63. mintmark-0.1.1/src/mintmark/manifest/document.py +222 -0
  64. mintmark-0.1.1/src/mintmark/manifest/sums.py +47 -0
  65. mintmark-0.1.1/src/mintmark/manifest/verify.py +362 -0
  66. mintmark-0.1.1/src/mintmark/mint.py +685 -0
  67. mintmark-0.1.1/src/mintmark/packs/__init__.py +22 -0
  68. mintmark-0.1.1/src/mintmark/packs/digest.py +58 -0
  69. mintmark-0.1.1/src/mintmark/packs/loader.py +195 -0
  70. mintmark-0.1.1/src/mintmark/packs/model.py +514 -0
  71. mintmark-0.1.1/src/mintmark/packs/semver.py +55 -0
  72. mintmark-0.1.1/src/mintmark/py.typed +0 -0
  73. mintmark-0.1.1/tests/adversarial/packs/alias/pack.yaml +10 -0
  74. mintmark-0.1.1/tests/adversarial/packs/anchor/pack.yaml +9 -0
  75. mintmark-0.1.1/tests/adversarial/packs/bad-name-pattern/pack.yaml +9 -0
  76. mintmark-0.1.1/tests/adversarial/packs/duplicate-key/pack.yaml +10 -0
  77. mintmark-0.1.1/tests/adversarial/packs/empty-file/pack.yaml +0 -0
  78. mintmark-0.1.1/tests/adversarial/packs/float-weight/pack.yaml +10 -0
  79. mintmark-0.1.1/tests/adversarial/packs/merge-key/pack.yaml +12 -0
  80. mintmark-0.1.1/tests/adversarial/packs/missing-schema-version/pack.yaml +8 -0
  81. mintmark-0.1.1/tests/adversarial/packs/multiple-documents/pack.yaml +10 -0
  82. mintmark-0.1.1/tests/adversarial/packs/non-mapping-root/pack.yaml +2 -0
  83. mintmark-0.1.1/tests/adversarial/packs/open-ended-requires-core/pack.yaml +9 -0
  84. mintmark-0.1.1/tests/adversarial/packs/tab-indentation/pack.yaml +3 -0
  85. mintmark-0.1.1/tests/adversarial/packs/unknown-field/pack.yaml +10 -0
  86. mintmark-0.1.1/tests/adversarial/packs/valid/pack.yaml +9 -0
  87. mintmark-0.1.1/tests/adversarial/packs/wrong-locale/pack.yaml +9 -0
  88. mintmark-0.1.1/tests/adversarial/test_pack_rejection.py +136 -0
  89. mintmark-0.1.1/tests/adversarial/test_tamper_detection.py +256 -0
  90. mintmark-0.1.1/tests/adversarial/test_template_grammar.py +123 -0
  91. mintmark-0.1.1/tests/conformance/pack/fields/account.yaml +20 -0
  92. mintmark-0.1.1/tests/conformance/pack/fields/card.yaml +17 -0
  93. mintmark-0.1.1/tests/conformance/pack/fields/complaint_ticket.yaml +13 -0
  94. mintmark-0.1.1/tests/conformance/pack/fields/customer.yaml +20 -0
  95. mintmark-0.1.1/tests/conformance/pack/fields/kyc_note.yaml +13 -0
  96. mintmark-0.1.1/tests/conformance/pack/fields/support_transcript.yaml +13 -0
  97. mintmark-0.1.1/tests/conformance/pack/fields/transaction.yaml +30 -0
  98. mintmark-0.1.1/tests/conformance/pack/lexicons/ratings.yaml +6 -0
  99. mintmark-0.1.1/tests/conformance/pack/pack.yaml +9 -0
  100. mintmark-0.1.1/tests/conformance/pack/recipes/full.yaml +27 -0
  101. mintmark-0.1.1/tests/conformance/pack/templates/complaints/set.yaml +7 -0
  102. mintmark-0.1.1/tests/conformance/pack/templates/kyc_notes/set.yaml +7 -0
  103. mintmark-0.1.1/tests/conformance/pack/templates/transcripts/set.yaml +7 -0
  104. mintmark-0.1.1/tests/conformance/test_contract_coverage.py +207 -0
  105. mintmark-0.1.1/tests/conftest.py +6 -0
  106. mintmark-0.1.1/tests/golden/demo-run/DIGESTS.json +22 -0
  107. mintmark-0.1.1/tests/golden/demo-run/customer.jsonl +100 -0
  108. mintmark-0.1.1/tests/golden/demo-run/transaction.jsonl +100 -0
  109. mintmark-0.1.1/tests/golden/demo-run/transaction.labels.jsonl +100 -0
  110. mintmark-0.1.1/tests/golden/prng_vectors.json +192 -0
  111. mintmark-0.1.1/tests/golden/test_golden_bytes.py +108 -0
  112. mintmark-0.1.1/tests/property/test_draws.py +165 -0
  113. mintmark-0.1.1/tests/property/test_fold_and_email.py +154 -0
  114. mintmark-0.1.1/tests/property/test_records.py +201 -0
  115. mintmark-0.1.1/tests/property/test_render.py +261 -0
  116. mintmark-0.1.1/tests/property/test_safe_mode_purity.py +153 -0
  117. mintmark-0.1.1/tests/property/test_span_alignment.py +195 -0
  118. mintmark-0.1.1/tests/unit/test_canary.py +104 -0
  119. mintmark-0.1.1/tests/unit/test_cli.py +316 -0
  120. mintmark-0.1.1/tests/unit/test_community_mirrors.py +75 -0
  121. mintmark-0.1.1/tests/unit/test_denylist.py +208 -0
  122. mintmark-0.1.1/tests/unit/test_emit.py +193 -0
  123. mintmark-0.1.1/tests/unit/test_mint_invariants.py +512 -0
  124. mintmark-0.1.1/tests/unit/test_module_boundaries.py +88 -0
  125. mintmark-0.1.1/tests/unit/test_no_libm.py +161 -0
  126. mintmark-0.1.1/tests/unit/test_pack_digest.py +112 -0
  127. mintmark-0.1.1/tests/unit/test_packaging.py +108 -0
  128. mintmark-0.1.1/tests/unit/test_prng.py +75 -0
  129. mintmark-0.1.1/tests/unit/test_prose_lint.py +130 -0
  130. mintmark-0.1.1/tests/unit/test_readme_mirror.py +182 -0
  131. mintmark-0.1.1/tests/unit/test_repository_inventory.py +104 -0
  132. mintmark-0.1.1/tests/unit/test_streams.py +139 -0
  133. mintmark-0.1.1/tests/unit/test_tables.py +134 -0
  134. mintmark-0.1.1/tests/unit/test_taxonomy.py +131 -0
  135. mintmark-0.1.1/tests/unit/test_toolchain.py +58 -0
  136. mintmark-0.1.1/tests/unit/test_workflows.py +121 -0
  137. mintmark-0.1.1/tools/canary.py +196 -0
  138. mintmark-0.1.1/tools/gen_tables.py +215 -0
  139. mintmark-0.1.1/tools/mdlint.py +333 -0
@@ -0,0 +1,29 @@
1
+ # Owner-only planning material. Never enters git history.
2
+ # Repository standard section 7.1: owner-only planning documents are
3
+ # gitignored by name.
4
+ PLAN.md
5
+ briefs/
6
+ research/
7
+ corpus/
8
+
9
+ # Build and run output
10
+ dist/
11
+ build/
12
+ *.egg-info/
13
+
14
+ # Environments and caches
15
+ .venv/
16
+ __pycache__/
17
+ *.py[cod]
18
+ .pytest_cache/
19
+ .mypy_cache/
20
+ .ruff_cache/
21
+
22
+ # OS
23
+ .DS_Store
24
+
25
+ # Minted output directories produced during development. Anchored to the root:
26
+ # an unanchored pattern also swallowed tests/golden/demo-run, which is committed
27
+ # reference output and the only proof that emitted bytes have not moved.
28
+ /demo-run/
29
+ /*-run/
@@ -0,0 +1,137 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project are documented here. The format follows
4
+ [keep a changelog](https://keepachangelog.com/en/1.1.0/), and this project uses
5
+ [semantic versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ The public surface under semantic versioning is: the command-line grammar, the
8
+ exit codes, every `--json` payload, the library's exported functions and their
9
+ returned dataclasses, the pack schema, the manifest schema, and the byte-level
10
+ output for a fixed set of inputs. A change that alters emitted bytes for a fixed
11
+ seed is a major version event even when no signature changed, because it breaks
12
+ the reproducibility of every published manifest.
13
+
14
+ ## 0.1.1 - 2026-08-22
15
+
16
+ ### Added
17
+
18
+ - Publication to PyPI, over trusted publishing. The release workflow was written
19
+ and left disabled so its mechanics could be reviewed before they ever ran; this
20
+ enables it. No long-lived token is stored in this repository and none is passed
21
+ to a step, because PyPI verifies the workflow identity directly.
22
+
23
+ Three gates stand between a tag and a published release, and none of them is a
24
+ reviewer's attention. The tag must agree with the version in `pyproject.toml`
25
+ and with the version the package reports. The full gate runs first and
26
+ publication depends on it. The `pypi` environment requires the owner's approval
27
+ and admits only `v*` tags, so a push to main cannot reach it.
28
+
29
+ ### Notes
30
+
31
+ The package is unchanged from 0.1.0. This version exists because publication is a
32
+ repository change that needs a tag to carry it, and moving the 0.1.0 tag would
33
+ have broken the immutability that repository's own tag ruleset enforces.
34
+
35
+ A version already on PyPI cannot be replaced, and deleting a release does not
36
+ free its number. The workflow refuses on a version mismatch rather than resolving
37
+ one.
38
+
39
+ ## 0.1.0 - 2026-08-22
40
+
41
+ ### Changed, and it moved emitted bytes
42
+
43
+ - The manifest gained a `license` block and its schema version went to 2. A
44
+ dataset leaves this project as a directory of files, and before this there was
45
+ nothing in that directory saying under what terms it could be used. An
46
+ attribution requirement a consumer cannot find in the artifact is not a
47
+ requirement. The block carries the code license, the dataset license the pack
48
+ declared, and a ready credit line; `verify` prints all three, and stripping the
49
+ block fails verification like any other tampering.
50
+ - `pack.yaml` requires `dataset_license`, from a closed set. The engine writes
51
+ this into every manifest it produces, and a free-text field would put a typo,
52
+ or terms nobody vetted, onto a published artifact. Declaring it changes the
53
+ pack digest, which changes emitted bytes for a fixed seed, which is why every
54
+ pack in the family took a version bump alongside it.
55
+
56
+ - The special-category descriptor lexicons moved into a curated YAML file and
57
+ grew to 90 entries. Expanding a lexicon changes the draw for every subsequent
58
+ index, so emitted bytes moved for a fixed seed. **Under this project's own rule
59
+ that is a major version event.** It is harmless only because nothing has been
60
+ published: there is no manifest this breaks. The reason is recorded in
61
+ `tests/golden/demo-run/DIGESTS.json` beside the regenerated goldens.
62
+ - `special_rate` now governs what it claimed to govern. A recipe declared it and
63
+ nothing read it, so template authors fixed the density with literal
64
+ probabilities and the recipe field was decoration. Templates now write
65
+ `[?special: ...]` and the rate comes from the recipe.
66
+
67
+ ### Added
68
+
69
+ - Turkish mirrors of every community document: contributing, conduct,
70
+ governance, security, and support, each linked from its original and held in
71
+ step by a test. The audience for this project reads Turkish, and a README
72
+ mirror alone left a contributor reading the project's own rules in a second
73
+ language. The conduct mirror records that it is our own rendering rather than
74
+ the official one, because the Contributor Covenant publishes Turkish at 2.0
75
+ while this repository adapts 2.1.
76
+ - `docs/kvkk.md` and its Turkish mirror: what this project produces and what it
77
+ does not claim under law 6698, with a table mapping the taxonomy's
78
+ special-category labels to the categories the law enumerates, and naming the
79
+ three that no label covers.
80
+ - `LICENSE-DATASETS.md`, `CITATION.cff`, issue and pull request templates,
81
+ `CODEOWNERS`, and grouped monthly dependency updates.
82
+
83
+ - The `derived:flag_unless` rule, which turns a sentinel enum value into a
84
+ boolean so a row can carry both which anomaly it is and whether it is one,
85
+ without two independent draws that can disagree.
86
+ - An optional `age_years: [low, high]` parameter on `datetime_window`, which
87
+ draws from the span that would give a person that age at the start of the
88
+ recipe window. Without it a birth date is drawn from the recipe window, so
89
+ every person in a dataset describing one year was also born in that year. The
90
+ field is a valid date, the label is right, the span aligns and the manifest
91
+ verifies, so nothing in the suite caught it; it is only wrong to a reader. The
92
+ parameter is optional and a field that omits it behaves exactly as before, so
93
+ no existing declaration had to move. Declaring it on a field whose generator
94
+ cannot read it is rejected by name at pack load, because a parameter nothing
95
+ reads is worse than one that fails loudly.
96
+
97
+ - Deterministic generation engine: SplitMix64 over 64-bit modular arithmetic,
98
+ per-site stream derivation, unbiased bounded and weighted draws, and
99
+ continuous distributions sampled from committed fixed-point inverse-CDF tables
100
+ so that no transcendental function runs in the mint path.
101
+ - Six identifier engines, each with a `safe` default that emits provably
102
+ checksum-invalid values and an opt-in `validator` mode that is watermarked in
103
+ the manifest.
104
+ - A closed eighteen-label taxonomy pinned by digest, span recording that
105
+ survives whitespace normalization, and a label sidecar format that binds spans
106
+ to the exact text they index.
107
+ - Strict, fail-closed pack loading: duplicate keys, anchors, aliases, merge
108
+ keys, multi-document files, non-mapping roots, tab indentation, and unknown
109
+ fields are each rejected by name.
110
+ - Canonical JSONL and CSV emission with no float in emitted data, and atomic
111
+ output so an interrupted mint leaves no directory that looks like a dataset.
112
+ - A provenance manifest with checksums, `verify` that recomputes every claim it
113
+ makes, and `reproduce` that re-mints from the manifest and compares bytes.
114
+ - A command-line surface of seven verbs with a five-value exit-code contract and
115
+ stable `--json` payloads, plus a two-function library API.
116
+ - An example fixture pack, shipped in both the wheel and the sdist, used by the
117
+ quickstart and the test suite.
118
+ - A real-institution denylist built from a verified public registry, scanned in
119
+ required CI over lexicons, templates, and golden outputs.
120
+ - English and Turkish READMEs, kept in step by a test that compares their
121
+ structure and checks the quickstart's promised output against what `verify`
122
+ actually prints.
123
+
124
+ ### Verified rather than assumed
125
+
126
+ The VKN check-digit algorithm, against two independent open implementations
127
+ cross-checked over 200 000 inputs. The unassigned status of IBAN bank code
128
+ 99999, against the TCMB participant list. Turkey's permanent UTC+3 status,
129
+ against the IANA time zone database. The institution denylist, against the same
130
+ TCMB list. Each record, with its source and retrieval date, is in
131
+ `docs/normative-verification.md`.
132
+
133
+ ### Notes
134
+
135
+ No release has been published. Nothing exists on any package registry, and
136
+ nothing in this file should be read as a claim that an installable artifact is
137
+ available. The name Mintmark is provisional pending trademark screening.
mintmark-0.1.1/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
mintmark-0.1.1/NOTICE ADDED
@@ -0,0 +1,14 @@
1
+ Mintmark
2
+ Copyright 2026 Mintmark contributors
3
+
4
+ This product includes software developed by the Mintmark contributors.
5
+
6
+ Mintmark is licensed under the Apache License, Version 2.0. This NOTICE is
7
+ informational and does not modify that license.
8
+
9
+ Mintmark is a provisional working name. Trademark screening is not complete and
10
+ the name is not frozen. See TRADEMARKS.md once published.
11
+
12
+ Third-party code or assets incorporated into Mintmark must be recorded in
13
+ ORIGIN_AND_ATTRIBUTION.md, including any attribution or NOTICE text required
14
+ by their licenses.