json-schema-engine 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.
@@ -0,0 +1,10 @@
1
+ .venv/
2
+ dist/
3
+ build/
4
+ __pycache__/
5
+ *.py[cod]
6
+ *.egg-info/
7
+ .pytest_cache/
8
+ .ruff_cache/
9
+ .mypy_cache/
10
+ .DS_Store
@@ -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.
@@ -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,26 @@
1
+ # json-schema-engine (Python)
2
+
3
+ This is a **name reservation** release. Version `0.0.1` provides no
4
+ functionality; it exists solely to reserve the `json-schema-engine`
5
+ distribution name on PyPI ahead of the real implementation.
6
+
7
+ The finished project will be a Python implementation of the design behind
8
+ [handrews/json-schema-engine](https://github.com/handrews/json-schema-engine):
9
+ a spec-complete, annotation-first JSON Schema engine built around two tiers
10
+ and a single keyword registry, producing all standard output formats.
11
+
12
+ It is produced by Henry Andrews using Claude Code.
13
+
14
+ The import namespace is `json_schema_engine`, with subpackages such as
15
+ `json_schema_engine.core`, `json_schema_engine.compiler`, and
16
+ `json_schema_engine.formats`. Only `json_schema_engine.core` exists today, as
17
+ an empty placeholder.
18
+
19
+ ## Install
20
+
21
+ ```
22
+ pip install json-schema-engine
23
+ ```
24
+
25
+ Do not install this yet expecting any functionality — 0.0.1 is a placeholder
26
+ release only.
@@ -0,0 +1,50 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "json-schema-engine"
7
+ version = "0.0.1"
8
+ description = "Name reservation for json-schema-engine, a forthcoming spec-complete, annotation-first JSON Schema engine for Python. This release provides no functionality."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [
14
+ { name = "Henry Andrews" },
15
+ ]
16
+ dependencies = []
17
+ keywords = ["json", "json-schema", "validation"]
18
+ classifiers = [
19
+ "Development Status :: 1 - Planning",
20
+ "Intended Audience :: Developers",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3 :: Only",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Programming Language :: Python :: 3.14",
26
+ "Topic :: Software Development :: Libraries",
27
+ ]
28
+
29
+ [project.urls]
30
+ Homepage = "https://github.com/handrews/py-json-schema-engine"
31
+ Repository = "https://github.com/handrews/py-json-schema-engine"
32
+ Issues = "https://github.com/handrews/py-json-schema-engine/issues"
33
+
34
+ [tool.hatch.build.targets.wheel]
35
+ packages = ["src/json_schema_engine"]
36
+
37
+ [tool.hatch.build.targets.sdist]
38
+ include = [
39
+ "src/",
40
+ "tests/",
41
+ "README.md",
42
+ "LICENSE",
43
+ "pyproject.toml",
44
+ ]
45
+
46
+ [dependency-groups]
47
+ dev = ["pytest>=8"]
48
+
49
+ [tool.pytest.ini_options]
50
+ testpaths = ["tests"]
@@ -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,12 @@
1
+ def test_core_module_imports_and_has_docstring():
2
+ import json_schema_engine.core as core
3
+
4
+ assert isinstance(core.__doc__, str)
5
+ assert core.__doc__.strip() != ""
6
+
7
+
8
+ def test_json_schema_engine_is_a_namespace_package():
9
+ import json_schema_engine
10
+
11
+ assert json_schema_engine.__file__ is None
12
+ assert list(json_schema_engine.__path__)