sandwich 0.2.0__tar.gz → 0.2.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.
- {sandwich-0.2.0 → sandwich-0.2.1}/PKG-INFO +26 -6
- {sandwich-0.2.0 → sandwich-0.2.1}/README.md +23 -1
- {sandwich-0.2.0 → sandwich-0.2.1}/pyproject.toml +8 -8
- {sandwich-0.2.0 → sandwich-0.2.1}/.gitignore +0 -0
- {sandwich-0.2.0 → sandwich-0.2.1}/LICENSE +0 -0
- {sandwich-0.2.0 → sandwich-0.2.1}/sandwich/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sandwich
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: DataVault 2.0 code gen
|
|
5
5
|
Author-email: Andrey Morozov <andrey@morozov.lv>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -12,10 +12,8 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Typing :: Typed
|
|
15
|
-
Requires-Python: >=3.
|
|
16
|
-
Requires-Dist:
|
|
17
|
-
Requires-Dist: pyodbc>=5.3.0
|
|
18
|
-
Requires-Dist: sqlalchemy>=2.0.44
|
|
15
|
+
Requires-Python: >=3.14
|
|
16
|
+
Requires-Dist: sqlalchemy
|
|
19
17
|
Description-Content-Type: text/markdown
|
|
20
18
|
|
|
21
19
|
## Data Vault 2.0 scaffolding tool
|
|
@@ -141,4 +139,26 @@ select cast(31 as bigint) [bk_id]
|
|
|
141
139
|
| proxy | stg | hub | sal | dim |
|
|
142
140
|
| | | sat | | fact |
|
|
143
141
|
| | | link | | |
|
|
144
|
-
_* Line of Business applications_
|
|
142
|
+
_* Line of Business applications_
|
|
143
|
+
|
|
144
|
+
### Usage diagram
|
|
145
|
+
```text
|
|
146
|
+
+ +-----------+ automation
|
|
147
|
+
+---- + -------> | Dv2Utils | -------+------+
|
|
148
|
+
| + uses +-----------+ |
|
|
149
|
+
| + | uses | creates
|
|
150
|
+
| + v |
|
|
151
|
+
| + uses +-----------+ uses |
|
|
152
|
+
+---- + -------> | Dv2Helper | --------------+
|
|
153
|
+
| + +-----------+ |
|
|
154
|
+
o + | |
|
|
155
|
+
/|\ + | DDL | python
|
|
156
|
+
/ \ ==========================================================
|
|
157
|
+
DWH Dev + creates | | database
|
|
158
|
+
| + v V
|
|
159
|
+
| + uses +--------+ uses +---------------+
|
|
160
|
+
+---- + -------> | entity | -----> | core objects |
|
|
161
|
+
+ +--------+ +---------------+
|
|
162
|
+
+
|
|
163
|
+
|
|
164
|
+
```
|
|
@@ -121,4 +121,26 @@ select cast(31 as bigint) [bk_id]
|
|
|
121
121
|
| proxy | stg | hub | sal | dim |
|
|
122
122
|
| | | sat | | fact |
|
|
123
123
|
| | | link | | |
|
|
124
|
-
_* Line of Business applications_
|
|
124
|
+
_* Line of Business applications_
|
|
125
|
+
|
|
126
|
+
### Usage diagram
|
|
127
|
+
```text
|
|
128
|
+
+ +-----------+ automation
|
|
129
|
+
+---- + -------> | Dv2Utils | -------+------+
|
|
130
|
+
| + uses +-----------+ |
|
|
131
|
+
| + | uses | creates
|
|
132
|
+
| + v |
|
|
133
|
+
| + uses +-----------+ uses |
|
|
134
|
+
+---- + -------> | Dv2Helper | --------------+
|
|
135
|
+
| + +-----------+ |
|
|
136
|
+
o + | |
|
|
137
|
+
/|\ + | DDL | python
|
|
138
|
+
/ \ ==========================================================
|
|
139
|
+
DWH Dev + creates | | database
|
|
140
|
+
| + v V
|
|
141
|
+
| + uses +--------+ uses +---------------+
|
|
142
|
+
+---- + -------> | entity | -----> | core objects |
|
|
143
|
+
+ +--------+ +---------------+
|
|
144
|
+
+
|
|
145
|
+
|
|
146
|
+
```
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "sandwich"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "DataVault 2.0 code gen"
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.14"
|
|
7
7
|
authors = [
|
|
8
8
|
{ name = "Andrey Morozov", email = "andrey@morozov.lv" }
|
|
9
9
|
]
|
|
@@ -18,16 +18,16 @@ classifiers = [
|
|
|
18
18
|
"Typing :: Typed",
|
|
19
19
|
]
|
|
20
20
|
dependencies = [
|
|
21
|
-
"
|
|
22
|
-
"sqlalchemy>=2.0.44",
|
|
23
|
-
"dotenv>=0.9.9",
|
|
21
|
+
"sqlalchemy",
|
|
24
22
|
]
|
|
25
23
|
|
|
26
24
|
[dependency-groups]
|
|
27
25
|
dev = [
|
|
28
|
-
"mypy
|
|
29
|
-
"psycopg2
|
|
30
|
-
"
|
|
26
|
+
"mypy",
|
|
27
|
+
"psycopg2-binary",
|
|
28
|
+
"pyodbc",
|
|
29
|
+
"pytest",
|
|
30
|
+
"python-dotenv",
|
|
31
31
|
]
|
|
32
32
|
|
|
33
33
|
[build-system]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|