schemez 0.3.0__tar.gz → 0.3.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.
- {schemez-0.3.0 → schemez-0.3.1}/PKG-INFO +1 -1
- {schemez-0.3.0 → schemez-0.3.1}/pyproject.toml +3 -2
- {schemez-0.3.0 → schemez-0.3.1}/LICENSE +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/README.md +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/__init__.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/code.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/convert.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/docstrings.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/helpers.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/py.typed +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/pydantic_types.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/schema.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/schemadef/__init__.py +0 -0
- {schemez-0.3.0 → schemez-0.3.1}/src/schemez/schemadef/schemadef.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "schemez"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.1"
|
4
4
|
description = "Pydantic shim for config stuff"
|
5
5
|
readme = "README.md"
|
6
6
|
requires-python = ">=3.12"
|
@@ -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]
|
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
|