dcvpg 1.0.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.
dcvpg-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: dcvpg
3
+ Version: 1.0.0
4
+ Summary: Data Contract Validator and Pipeline Guardian — generic, open-source
5
+ Author-email: Data Engineering <you@email.com>
6
+ License: Apache-2.0
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: pydantic>=2.0
10
+ Requires-Dist: great-expectations>=0.18
11
+ Requires-Dist: pyyaml>=6.0
12
+ Requires-Dist: httpx>=0.27
13
+ Requires-Dist: click>=8.0
14
+ Requires-Dist: fastapi>=0.110
15
+ Requires-Dist: streamlit>=1.32
16
+ Requires-Dist: psycopg2-binary>=2.9
17
+ Requires-Dist: pandas>=2.0
18
+ Provides-Extra: airflow
19
+ Requires-Dist: apache-airflow>=2.8; extra == "airflow"
20
+ Provides-Extra: prefect
21
+ Requires-Dist: prefect>=2.0; extra == "prefect"
22
+ Provides-Extra: dagster
23
+ Requires-Dist: dagster>=1.0; extra == "dagster"
24
+ Provides-Extra: mcp
25
+ Requires-Dist: mcp>=1.0; extra == "mcp"
26
+ Provides-Extra: ai
27
+ Requires-Dist: anthropic>=0.25; extra == "ai"
28
+ Requires-Dist: deepdiff>=6.0; extra == "ai"
29
+ Requires-Dist: scipy; extra == "ai"
30
+ Requires-Dist: numpy; extra == "ai"
31
+ Requires-Dist: pandas; extra == "ai"
32
+ Requires-Dist: PyGithub>=2.0; extra == "ai"
33
+ Requires-Dist: slack-bolt>=1.0; extra == "ai"
34
+ Provides-Extra: all
35
+ Requires-Dist: dcvpg[ai,airflow,dagster,mcp,prefect]; extra == "all"
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: dcvpg
3
+ Version: 1.0.0
4
+ Summary: Data Contract Validator and Pipeline Guardian — generic, open-source
5
+ Author-email: Data Engineering <you@email.com>
6
+ License: Apache-2.0
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: pydantic>=2.0
10
+ Requires-Dist: great-expectations>=0.18
11
+ Requires-Dist: pyyaml>=6.0
12
+ Requires-Dist: httpx>=0.27
13
+ Requires-Dist: click>=8.0
14
+ Requires-Dist: fastapi>=0.110
15
+ Requires-Dist: streamlit>=1.32
16
+ Requires-Dist: psycopg2-binary>=2.9
17
+ Requires-Dist: pandas>=2.0
18
+ Provides-Extra: airflow
19
+ Requires-Dist: apache-airflow>=2.8; extra == "airflow"
20
+ Provides-Extra: prefect
21
+ Requires-Dist: prefect>=2.0; extra == "prefect"
22
+ Provides-Extra: dagster
23
+ Requires-Dist: dagster>=1.0; extra == "dagster"
24
+ Provides-Extra: mcp
25
+ Requires-Dist: mcp>=1.0; extra == "mcp"
26
+ Provides-Extra: ai
27
+ Requires-Dist: anthropic>=0.25; extra == "ai"
28
+ Requires-Dist: deepdiff>=6.0; extra == "ai"
29
+ Requires-Dist: scipy; extra == "ai"
30
+ Requires-Dist: numpy; extra == "ai"
31
+ Requires-Dist: pandas; extra == "ai"
32
+ Requires-Dist: PyGithub>=2.0; extra == "ai"
33
+ Requires-Dist: slack-bolt>=1.0; extra == "ai"
34
+ Provides-Extra: all
35
+ Requires-Dist: dcvpg[ai,airflow,dagster,mcp,prefect]; extra == "all"
@@ -0,0 +1,7 @@
1
+ pyproject.toml
2
+ dcvpg.egg-info/PKG-INFO
3
+ dcvpg.egg-info/SOURCES.txt
4
+ dcvpg.egg-info/dependency_links.txt
5
+ dcvpg.egg-info/entry_points.txt
6
+ dcvpg.egg-info/requires.txt
7
+ dcvpg.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ dcvpg = dcvpg.cli.main:cli
@@ -0,0 +1,33 @@
1
+ pydantic>=2.0
2
+ great-expectations>=0.18
3
+ pyyaml>=6.0
4
+ httpx>=0.27
5
+ click>=8.0
6
+ fastapi>=0.110
7
+ streamlit>=1.32
8
+ psycopg2-binary>=2.9
9
+ pandas>=2.0
10
+
11
+ [ai]
12
+ anthropic>=0.25
13
+ deepdiff>=6.0
14
+ scipy
15
+ numpy
16
+ pandas
17
+ PyGithub>=2.0
18
+ slack-bolt>=1.0
19
+
20
+ [airflow]
21
+ apache-airflow>=2.8
22
+
23
+ [all]
24
+ dcvpg[ai,airflow,dagster,mcp,prefect]
25
+
26
+ [dagster]
27
+ dagster>=1.0
28
+
29
+ [mcp]
30
+ mcp>=1.0
31
+
32
+ [prefect]
33
+ prefect>=2.0
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,39 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dcvpg"
7
+ version = "1.0.0"
8
+ description = "Data Contract Validator and Pipeline Guardian — generic, open-source"
9
+ authors = [{ name = "Data Engineering", email = "you@email.com" }]
10
+ license = { text = "Apache-2.0" }
11
+ readme = "README.md"
12
+ requires-python = ">=3.11"
13
+
14
+ dependencies = [
15
+ "pydantic>=2.0",
16
+ "great-expectations>=0.18",
17
+ "pyyaml>=6.0",
18
+ "httpx>=0.27",
19
+ "click>=8.0",
20
+ "fastapi>=0.110",
21
+ "streamlit>=1.32",
22
+ "psycopg2-binary>=2.9",
23
+ "pandas>=2.0"
24
+ ]
25
+
26
+ [project.optional-dependencies]
27
+ airflow = ["apache-airflow>=2.8"]
28
+ prefect = ["prefect>=2.0"]
29
+ dagster = ["dagster>=1.0"]
30
+ mcp = ["mcp>=1.0"]
31
+ ai = ["anthropic>=0.25", "deepdiff>=6.0", "scipy", "numpy", "pandas", "PyGithub>=2.0", "slack-bolt>=1.0"]
32
+ all = ["dcvpg[mcp,ai,airflow,prefect,dagster]"]
33
+
34
+ [project.scripts]
35
+ dcvpg = "dcvpg.cli.main:cli"
36
+
37
+ [tool.setuptools.packages.find]
38
+ where = ["."]
39
+ include = ["dcvpg*"]
dcvpg-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+