hexdag-plugins 0.2.0.dev3__tar.gz → 0.2.0.dev6__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.
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hexdag-plugins
3
- Version: 0.2.0.dev3
4
- Summary: Official plugins for hexDAG framework - Azure, MySQL, ETL, and storage adapters
3
+ Version: 0.2.0.dev6
4
+ Summary: Official plugins for hexDAG framework - Azure, Google, Ollama, Email, MySQL, ETL, and storage adapters
5
5
  Project-URL: Homepage, https://hexdag.ai
6
6
  Project-URL: Repository, https://github.com/omniviser/hexdag
7
7
  Project-URL: Documentation, https://hexdag.ai/docs/plugins
8
8
  Project-URL: Bug Reports, https://github.com/omniviser/hexdag/issues
9
9
  Author-email: hexDAG Team <developers@omniviser.ai>
10
10
  License: Apache-2.0
11
- Keywords: adapter,azure,etl,hexdag,mysql,plugins,storage
11
+ Keywords: adapter,azure,email,etl,gemini,google,hexdag,mysql,ollama,plugins,storage,vertex
12
12
  Classifier: Development Status :: 4 - Beta
13
13
  Classifier: Intended Audience :: Developers
14
14
  Classifier: License :: OSI Approved :: Apache Software License
@@ -27,6 +27,8 @@ Requires-Dist: azure-identity>=1.13.0; extra == 'all'
27
27
  Requires-Dist: azure-keyvault-secrets>=4.4.0; extra == 'all'
28
28
  Requires-Dist: azure-storage-blob>=12.13.0; extra == 'all'
29
29
  Requires-Dist: chromadb>=0.4.0; extra == 'all'
30
+ Requires-Dist: google-auth>=2.0.0; extra == 'all'
31
+ Requires-Dist: httpx>=0.24.0; extra == 'all'
30
32
  Requires-Dist: openai>=1.0.0; extra == 'all'
31
33
  Requires-Dist: pandas>=2.0.0; extra == 'all'
32
34
  Requires-Dist: pgvector>=0.3.0; extra == 'all'
@@ -59,8 +61,19 @@ Requires-Dist: ruff>=0.1.0; extra == 'dev'
59
61
  Provides-Extra: etl
60
62
  Requires-Dist: aiohttp>=3.8.0; extra == 'etl'
61
63
  Requires-Dist: pandas>=2.0.0; extra == 'etl'
64
+ Provides-Extra: google
65
+ Requires-Dist: google-auth>=2.0.0; extra == 'google'
66
+ Requires-Dist: httpx>=0.24.0; extra == 'google'
67
+ Provides-Extra: mail-all
68
+ Requires-Dist: httpx>=0.24.0; extra == 'mail-all'
69
+ Provides-Extra: mail-graph
70
+ Requires-Dist: httpx>=0.24.0; extra == 'mail-graph'
71
+ Provides-Extra: mail-sendgrid
72
+ Requires-Dist: httpx>=0.24.0; extra == 'mail-sendgrid'
62
73
  Provides-Extra: mysql
63
74
  Requires-Dist: pymysql>=1.1.0; extra == 'mysql'
75
+ Provides-Extra: ollama
76
+ Requires-Dist: httpx>=0.24.0; extra == 'ollama'
64
77
  Provides-Extra: storage-all
65
78
  Requires-Dist: aiomysql>=0.2.0; extra == 'storage-all'
66
79
  Requires-Dist: asyncpg>=0.29.0; extra == 'storage-all'
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "hexdag-plugins"
3
- version = "0.2.0.dev3"
4
- description = "Official plugins for hexDAG framework - Azure, MySQL, ETL, and storage adapters"
3
+ version = "0.2.0.dev6"
4
+ description = "Official plugins for hexDAG framework - Azure, Google, Ollama, Email, MySQL, ETL, and storage adapters"
5
5
  readme = "README.md"
6
6
  license = { text = "Apache-2.0" }
7
7
  authors = [{ name = "hexDAG Team", email = "developers@omniviser.ai" }]
@@ -10,6 +10,11 @@ keywords = [
10
10
  "hexdag",
11
11
  "plugins",
12
12
  "azure",
13
+ "google",
14
+ "gemini",
15
+ "vertex",
16
+ "ollama",
17
+ "email",
13
18
  "mysql",
14
19
  "etl",
15
20
  "storage",
@@ -58,9 +63,26 @@ storage-all = [
58
63
  "hexdag-plugins[storage-chromadb]",
59
64
  ]
60
65
 
66
+ # Google Cloud plugins
67
+ google = ["google-auth>=2.0.0", "httpx>=0.24.0"]
68
+
69
+ # Ollama plugin
70
+ ollama = ["httpx>=0.24.0"]
71
+
72
+ # Email plugins
73
+ mail-graph = ["httpx>=0.24.0"]
74
+ mail-sendgrid = ["httpx>=0.24.0"]
75
+ mail-all = [
76
+ "hexdag-plugins[mail-graph]",
77
+ "hexdag-plugins[mail-sendgrid]",
78
+ ]
79
+
61
80
  # All plugins
62
81
  all = [
63
82
  "hexdag-plugins[azure-all]",
83
+ "hexdag-plugins[google]",
84
+ "hexdag-plugins[ollama]",
85
+ "hexdag-plugins[mail-all]",
64
86
  "hexdag-plugins[mysql]",
65
87
  "hexdag-plugins[etl]",
66
88
  "hexdag-plugins[storage-all]",
@@ -131,7 +153,7 @@ warn_unused_configs = true
131
153
  disallow_untyped_defs = true
132
154
 
133
155
  [tool.pytest.ini_options]
134
- testpaths = ["azure/tests", "mysql_adapter/tests", "hexdag_etl/tests", "storage/tests"]
156
+ testpaths = ["azure/tests", "mysql_adapter/tests", "hexdag_etl/tests", "storage/tests", "google/tests", "ollama/tests", "mail/tests"]
135
157
  python_files = ["test_*.py"]
136
158
  python_classes = ["Test*"]
137
159
  python_functions = ["test_*"]