surrealdb-orm 0.1.0__tar.gz → 0.1.2__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.
Potentially problematic release.
This version of surrealdb-orm might be problematic. Click here for more details.
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/PKG-INFO +3 -3
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/README.md +2 -2
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/pyproject.toml +2 -2
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/.gitignore +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/LICENSE +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/Makefile +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/__init__.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/surreal_orm/__init__.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/surreal_orm/connection_manager.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/surreal_orm/constants.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/surreal_orm/enum.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/surreal_orm/model_base.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/surreal_orm/query_set.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/src/surreal_orm/utils.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/tests/__init__.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/tests/test_e2e.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/tests/test_manager.py +0 -0
- {surrealdb_orm-0.1.0 → surrealdb_orm-0.1.2}/tests/test_unit.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: surrealdb-orm
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: SurrealDB ORM as 'DJango style' for Python with async support. Works with pydantic validation.
|
|
5
5
|
Project-URL: Homepage, https://github.com/EulogySnowfall/SurrealDB-ORM
|
|
6
6
|
Project-URL: Documentation, https://github.com/EulogySnowfall/SurrealDB-ORM
|
|
@@ -68,9 +68,9 @@ Description-Content-Type: text/markdown
|
|
|
68
68
|
|
|
69
69
|
---
|
|
70
70
|
|
|
71
|
-
##
|
|
71
|
+
## ✅ Version
|
|
72
72
|
|
|
73
|
-
Alpha 0.1.
|
|
73
|
+
Alpha 0.1.2
|
|
74
74
|
|
|
75
75
|
---
|
|
76
76
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "surrealdb-orm"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = "SurrealDB ORM as 'DJango style' for Python with async support. Works with pydantic validation."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -87,7 +87,7 @@ lint = [
|
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
[tool.hatch.build.targets.wheel]
|
|
90
|
-
packages = ["src"]
|
|
90
|
+
packages = ["src.surreal_orm"]
|
|
91
91
|
|
|
92
92
|
[tool.hatch.build.targets.sdist]
|
|
93
93
|
include = ["/README.md", "/Makefile", "/src", "/tests"]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|