poweretl-databricks 0.0.1a1__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.
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: poweretl-databricks
3
+ Version: 0.0.1a1
4
+ Summary:
5
+ Author: Your Name
6
+ Author-email: you@example.com
7
+ Requires-Python: >=3.13
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.13
10
+ Classifier: Programming Language :: Python :: 3.14
11
+ Requires-Dist: poweretl-common
12
+ Description-Content-Type: text/markdown
13
+
14
+
File without changes
@@ -0,0 +1,32 @@
1
+ [project]
2
+ name = "poweretl-databricks"
3
+ version = "0.0.1a1"
4
+ description = ""
5
+ authors = [
6
+ {name = "Your Name",email = "you@example.com"}
7
+ ]
8
+ readme = "README.md"
9
+ requires-python = ">=3.13"
10
+ dependencies = [
11
+ ]
12
+
13
+ [tool.poetry]
14
+ packages = [{include = "poweretl", from = "src"}]
15
+
16
+
17
+ [build-system]
18
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
19
+ build-backend = "poetry.core.masonry.api"
20
+
21
+ [tool.poetry.group.dev]
22
+ optional = true
23
+
24
+ [tool.poetry.group.dev.dependencies]
25
+ poweretl-defs = { path = "../defs/" }
26
+ poweretl-common = { path = "../common/"}
27
+ pytest = "^7.4.0"
28
+ pytest-cov = "^7.0.0"
29
+
30
+
31
+ [tool.poetry.dependencies]
32
+ poweretl-common = "*"
@@ -0,0 +1,12 @@
1
+
2
+
3
+
4
+ class DatabricksMetaProvider:
5
+
6
+ def __init__(self):
7
+ pass
8
+
9
+ def refresh_meta_model():
10
+ """Checks the version of meta model and updates it if required
11
+ """
12
+ pass
@@ -0,0 +1 @@
1
+ from .DatabricksMetaProvider import *