datavein 0.1.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.
@@ -0,0 +1,33 @@
1
+ # Build
2
+ build/
3
+ dist/
4
+ *.egg-info/
5
+ *.whl
6
+ *.tar.gz
7
+
8
+ # Virtual environments
9
+ venv/
10
+ env/
11
+ .venv/
12
+
13
+ # Python
14
+ __pycache__/
15
+ *.pyc
16
+ *.pyo
17
+ *.pyd
18
+ .Python
19
+
20
+ # IDE
21
+ .vscode/
22
+ .idea/
23
+ *.swp
24
+ *.swo
25
+ *~
26
+
27
+ # OS
28
+ .DS_Store
29
+ .env
30
+
31
+ # Test coverage
32
+ .coverage
33
+ htmlcov/
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: datavein
3
+ Version: 0.1.0
4
+ Summary: Open source data ecosystem on Apache Iceberg
5
+ Project-URL: Homepage, https://github.com/yourusername/datavein
6
+ Author-email: Anup Moncy <n93181165@gmail.com>
7
+ License-Expression: Apache-2.0
8
+ Keywords: data,governance,iceberg,lakehouse,lineage,open-source
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Topic :: Database
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+
18
+ # datavein
19
+ Open source data ecosystem on Apache Iceberg.
20
+ Coming soon. Apache 2.0.
@@ -0,0 +1,3 @@
1
+ # datavein
2
+ Open source data ecosystem on Apache Iceberg.
3
+ Coming soon. Apache 2.0.
@@ -0,0 +1,2 @@
1
+ __version__ = "0.1.0"
2
+ __author__ = "Anup"
@@ -0,0 +1,44 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "datavein"
7
+ version = "0.1.0"
8
+ description = "Open source data ecosystem on Apache Iceberg"
9
+ readme = "README.md"
10
+ authors = [
11
+ { name = "Anup Moncy", email = "n93181165@gmail.com" },
12
+ ]
13
+ license = "Apache-2.0"
14
+ requires-python = ">=3.9"
15
+ dependencies = []
16
+ keywords = [
17
+ "iceberg",
18
+ "lakehouse",
19
+ "data",
20
+ "governance",
21
+ "lineage",
22
+ "open-source",
23
+ ]
24
+ classifiers = [
25
+ "Development Status :: 3 - Alpha",
26
+ "Topic :: Database",
27
+ "License :: OSI Approved :: Apache Software License",
28
+ "Programming Language :: Python :: 3.9",
29
+ "Programming Language :: Python :: 3.10",
30
+ "Programming Language :: Python :: 3.11",
31
+ ]
32
+
33
+ [project.urls]
34
+ Homepage = "https://github.com/yourusername/datavein"
35
+
36
+ [tool.hatch.build]
37
+ include = [
38
+ "datavein",
39
+ "README.md",
40
+ "pyproject.toml",
41
+ ]
42
+
43
+ [tool.hatch.build.targets.wheel]
44
+ packages = ["datavein"]