json-schema-engine 0.0.1__py3-none-any.whl

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.
@@ -0,0 +1,7 @@
1
+ """Placeholder release that reserves the ``json-schema-engine`` name.
2
+
3
+ This module intentionally provides no functionality yet. It exists so the
4
+ ``json-schema-engine`` distribution can be published as a 0.0.1 name
5
+ reservation on PyPI ahead of the real implementation, a Python counterpart
6
+ to https://github.com/handrews/json-schema-engine.
7
+ """
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.5
2
+ Name: json-schema-engine
3
+ Version: 0.0.1
4
+ Summary: Name reservation for json-schema-engine, a forthcoming spec-complete, annotation-first JSON Schema engine for Python. This release provides no functionality.
5
+ Project-URL: Homepage, https://github.com/handrews/py-json-schema-engine
6
+ Project-URL: Repository, https://github.com/handrews/py-json-schema-engine
7
+ Project-URL: Issues, https://github.com/handrews/py-json-schema-engine/issues
8
+ Author: Henry Andrews
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: json,json-schema,validation
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Topic :: Software Development :: Libraries
20
+ Requires-Python: >=3.12
21
+ Description-Content-Type: text/markdown
22
+
23
+ # json-schema-engine (Python)
24
+
25
+ This is a **name reservation** release. Version `0.0.1` provides no
26
+ functionality; it exists solely to reserve the `json-schema-engine`
27
+ distribution name on PyPI ahead of the real implementation.
28
+
29
+ The finished project will be a Python implementation of the design behind
30
+ [handrews/json-schema-engine](https://github.com/handrews/json-schema-engine):
31
+ a spec-complete, annotation-first JSON Schema engine built around two tiers
32
+ and a single keyword registry, producing all standard output formats.
33
+
34
+ It is produced by Henry Andrews using Claude Code.
35
+
36
+ The import namespace is `json_schema_engine`, with subpackages such as
37
+ `json_schema_engine.core`, `json_schema_engine.compiler`, and
38
+ `json_schema_engine.formats`. Only `json_schema_engine.core` exists today, as
39
+ an empty placeholder.
40
+
41
+ ## Install
42
+
43
+ ```
44
+ pip install json-schema-engine
45
+ ```
46
+
47
+ Do not install this yet expecting any functionality — 0.0.1 is a placeholder
48
+ release only.
@@ -0,0 +1,5 @@
1
+ json_schema_engine/core/__init__.py,sha256=3Chr0a3H5ekmSmVHp4kr5wYLtLT8NFa3ECt2ZWKRhhY,344
2
+ json_schema_engine-0.0.1.dist-info/METADATA,sha256=1dS8M5PC66n3X6-7WL9EHOkt0I6LIcIdYNDKuRYcdd8,1988
3
+ json_schema_engine-0.0.1.dist-info/WHEEL,sha256=THafob7ofN-NsuMN7Mg4qZyHaQI7KkD-QlcQatYhXPo,87
4
+ json_schema_engine-0.0.1.dist-info/licenses/LICENSE,sha256=y2BsKGWVmmmKPGM3UhGeeIDEL_6ZVRjeCIuxOHua18I,1070
5
+ json_schema_engine-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Henry Andrews
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.