etlantic-sqlmodel 0.18.0__tar.gz → 0.19.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.
- {etlantic_sqlmodel-0.18.0 → etlantic_sqlmodel-0.19.0}/PKG-INFO +4 -4
- {etlantic_sqlmodel-0.18.0 → etlantic_sqlmodel-0.19.0}/README.md +2 -2
- {etlantic_sqlmodel-0.18.0 → etlantic_sqlmodel-0.19.0}/pyproject.toml +2 -2
- {etlantic_sqlmodel-0.18.0 → etlantic_sqlmodel-0.19.0}/src/etlantic_sqlmodel/__init__.py +1 -1
- {etlantic_sqlmodel-0.18.0 → etlantic_sqlmodel-0.19.0}/.gitignore +0 -0
- {etlantic_sqlmodel-0.18.0 → etlantic_sqlmodel-0.19.0}/src/etlantic_sqlmodel/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: etlantic-sqlmodel
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.19.0
|
|
4
4
|
Summary: ContractModel ↔ SQLModel bridge for ETLantic.
|
|
5
5
|
Project-URL: Homepage, https://github.com/eddiethedean/etlantic
|
|
6
6
|
Project-URL: Documentation, https://github.com/eddiethedean/etlantic/tree/main/docs
|
|
@@ -18,17 +18,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
19
19
|
Classifier: Typing :: Typed
|
|
20
20
|
Requires-Python: >=3.11
|
|
21
|
-
Requires-Dist: etlantic<0.
|
|
21
|
+
Requires-Dist: etlantic<0.20,>=0.19.0
|
|
22
22
|
Requires-Dist: sqlmodel<1,>=0.0.22
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
25
|
# etlantic-sqlmodel
|
|
26
26
|
|
|
27
27
|
Optional bridge between ETLantic `Data` contracts and
|
|
28
|
-
[SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.
|
|
28
|
+
[SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.19.
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
pip install 'etlantic==0.
|
|
31
|
+
pip install 'etlantic==0.19.0' 'etlantic-sqlmodel==0.19.0'
|
|
32
32
|
# or: pip install 'etlantic[sqlmodel]'
|
|
33
33
|
```
|
|
34
34
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# etlantic-sqlmodel
|
|
2
2
|
|
|
3
3
|
Optional bridge between ETLantic `Data` contracts and
|
|
4
|
-
[SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.
|
|
4
|
+
[SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.19.
|
|
5
5
|
|
|
6
6
|
```bash
|
|
7
|
-
pip install 'etlantic==0.
|
|
7
|
+
pip install 'etlantic==0.19.0' 'etlantic-sqlmodel==0.19.0'
|
|
8
8
|
# or: pip install 'etlantic[sqlmodel]'
|
|
9
9
|
```
|
|
10
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "etlantic-sqlmodel"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.19.0"
|
|
4
4
|
description = "ContractModel ↔ SQLModel bridge for ETLantic."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -17,7 +17,7 @@ classifiers = [
|
|
|
17
17
|
"Typing :: Typed",
|
|
18
18
|
]
|
|
19
19
|
dependencies = [
|
|
20
|
-
"etlantic>=0.
|
|
20
|
+
"etlantic>=0.19.0,<0.20",
|
|
21
21
|
"sqlmodel>=0.0.22,<1",
|
|
22
22
|
]
|
|
23
23
|
|
|
File without changes
|
|
File without changes
|