schemez 0.3.0__tar.gz → 1.0.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.
- {schemez-0.3.0 → schemez-1.0.0}/PKG-INFO +2 -2
- {schemez-0.3.0 → schemez-1.0.0}/pyproject.toml +8 -7
- {schemez-0.3.0 → schemez-1.0.0}/LICENSE +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/README.md +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/__init__.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/code.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/convert.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/docstrings.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/helpers.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/py.typed +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/pydantic_types.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/schema.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/schemadef/__init__.py +0 -0
- {schemez-0.3.0 → schemez-1.0.0}/src/schemez/schemadef/schemadef.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: schemez
|
3
|
-
Version: 0.
|
3
|
+
Version: 1.0.0
|
4
4
|
Summary: Pydantic shim for config stuff
|
5
5
|
Keywords:
|
6
6
|
Author: Philipp Temminghoff
|
@@ -47,7 +47,7 @@ Requires-Dist: universal-pathlib>=0.2.6
|
|
47
47
|
Requires-Dist: llmling-agent ; extra == 'ai'
|
48
48
|
Requires-Dist: anyenv>=0.4.14 ; extra == 'ai'
|
49
49
|
Requires-Dist: yamling ; extra == 'yaml'
|
50
|
-
Requires-Python: >=3.
|
50
|
+
Requires-Python: >=3.13
|
51
51
|
Project-URL: Code coverage, https://app.codecov.io/gh/phil65/schemez
|
52
52
|
Project-URL: Discussions, https://github.com/phil65/schemez/discussions
|
53
53
|
Project-URL: Documentation, https://phil65.github.io/schemez/
|
@@ -1,9 +1,9 @@
|
|
1
1
|
[project]
|
2
2
|
name = "schemez"
|
3
|
-
version = "0.
|
3
|
+
version = "1.0.0"
|
4
4
|
description = "Pydantic shim for config stuff"
|
5
5
|
readme = "README.md"
|
6
|
-
requires-python = ">=3.
|
6
|
+
requires-python = ">=3.13"
|
7
7
|
license = { file = "LICENSE" }
|
8
8
|
authors = [
|
9
9
|
{ name = "Philipp Temminghoff", email = "philipptemminghoff@googlemail.com" },
|
@@ -90,7 +90,7 @@ allowed-commit-types = [
|
|
90
90
|
docstring-style = "google"
|
91
91
|
|
92
92
|
[tool.mypy]
|
93
|
-
python_version = "3.
|
93
|
+
python_version = "3.13"
|
94
94
|
disable_error_code = ["misc", "import"]
|
95
95
|
pretty = true
|
96
96
|
check_untyped_defs = true
|
@@ -100,7 +100,7 @@ plugins = ["pydantic.mypy"]
|
|
100
100
|
[tool.pyright]
|
101
101
|
venvPath = "."
|
102
102
|
venv = ".venv"
|
103
|
-
pythonVersion = "3.
|
103
|
+
pythonVersion = "3.13"
|
104
104
|
pythonPlatform = "All"
|
105
105
|
typeCheckingMode = "basic"
|
106
106
|
deprecateTypingAliases = true
|
@@ -125,7 +125,7 @@ testpaths = "tests/"
|
|
125
125
|
[tool.ruff]
|
126
126
|
line-length = 90
|
127
127
|
extend-exclude = ["docs"]
|
128
|
-
target-version = "
|
128
|
+
target-version = "py313"
|
129
129
|
|
130
130
|
[tool.ruff.lint]
|
131
131
|
future-annotations = true
|
@@ -235,13 +235,14 @@ runtime-evaluated-base-classes = [
|
|
235
235
|
"pydantic.BaseModel",
|
236
236
|
"sqlalchemy.orm.DeclarativeBase",
|
237
237
|
"schemez.Schema",
|
238
|
+
"sqlmodel.SQLModel",
|
238
239
|
]
|
239
240
|
runtime-evaluated-decorators = [
|
240
241
|
"pydantic.validate_call",
|
241
|
-
"attrs.define",
|
242
242
|
"fastapi.FastAPI.get",
|
243
243
|
"fastapi.FastAPI.post",
|
244
244
|
"fastmcp.FastMCP.tool",
|
245
|
+
"typer.Typer.command",
|
245
246
|
]
|
246
247
|
|
247
248
|
[tool.ruff.lint.isort]
|
@@ -260,7 +261,7 @@ combine-as-imports = true
|
|
260
261
|
preview = true
|
261
262
|
|
262
263
|
[tool.ty.environment]
|
263
|
-
python-version = "3.
|
264
|
+
python-version = "3.13"
|
264
265
|
|
265
266
|
[tool.uv]
|
266
267
|
default-groups = ["dev", "lint", "docs"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|