simple-module-db 0.0.2__tar.gz → 0.0.3__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.
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/.gitignore +4 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/PKG-INFO +2 -2
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/pyproject.toml +2 -2
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/LICENSE +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/README.md +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/__init__.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/base.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/deps.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/listeners.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/migrations.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/mixins.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/provider.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/py.typed +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/simple_module_db/session.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/tests/_models.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/tests/conftest.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/tests/test_base.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/tests/test_db_logging.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/tests/test_migrations.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/tests/test_multi_tenancy.py +0 -0
- {simple_module_db-0.0.2 → simple_module_db-0.0.3}/tests/test_session.py +0 -0
|
@@ -36,6 +36,10 @@ uploads/
|
|
|
36
36
|
# Vite
|
|
37
37
|
host/static/dist/
|
|
38
38
|
|
|
39
|
+
# VitePress (docs)
|
|
40
|
+
docs/.vitepress/cache/
|
|
41
|
+
docs/.vitepress/dist/
|
|
42
|
+
|
|
39
43
|
# Auto-generated frontend module manifest (regenerated by the host at boot
|
|
40
44
|
# or via `make gen-pages`).
|
|
41
45
|
host/client_app/modules.manifest.json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simple_module_db
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Per-module SQLModel Base, async session, standard mixins (Audit, SoftDelete, MultiTenant, Versioned) for simple_module
|
|
5
5
|
Project-URL: Homepage, https://github.com/antosubash/simple_module_python
|
|
6
6
|
Project-URL: Repository, https://github.com/antosubash/simple_module_python
|
|
@@ -24,7 +24,7 @@ Requires-Python: >=3.12
|
|
|
24
24
|
Requires-Dist: aiosqlite>=0.20
|
|
25
25
|
Requires-Dist: alembic>=1.14
|
|
26
26
|
Requires-Dist: asyncpg>=0.30
|
|
27
|
-
Requires-Dist: simple-module-core==0.0.
|
|
27
|
+
Requires-Dist: simple-module-core==0.0.3
|
|
28
28
|
Requires-Dist: sqlalchemy[asyncio]>=2.0
|
|
29
29
|
Requires-Dist: sqlmodel>=0.0.22
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "simple_module_db"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.3"
|
|
4
4
|
description = "Per-module SQLModel Base, async session, standard mixins (Audit, SoftDelete, MultiTenant, Versioned) for simple_module"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -24,7 +24,7 @@ dependencies = [
|
|
|
24
24
|
"aiosqlite>=0.20",
|
|
25
25
|
"alembic>=1.14",
|
|
26
26
|
"asyncpg>=0.30",
|
|
27
|
-
"simple_module_core==0.0.
|
|
27
|
+
"simple_module_core==0.0.3",
|
|
28
28
|
"sqlalchemy[asyncio]>=2.0",
|
|
29
29
|
"sqlmodel>=0.0.22",
|
|
30
30
|
]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|