exasol-bundle 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.
@@ -0,0 +1,4 @@
1
+ include pyproject.toml
2
+ include setup.py
3
+ include README.md
4
+ recursive-include exasol_bundle *.py
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: exasol-bundle
3
+ Version: 1.0.0
4
+ Summary: Universal bundler for Exasol MCP, JSON Tables, and Personal CLI
5
+ Author-email: Exasol Open Source <opensource@exasol.com>
6
+ License: MIT
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: exasol-mcp-server<3.0,>=2.0
10
+ Requires-Dist: exasol-json-tables<2.0,>=1.0
11
+ Provides-Extra: mcp
12
+ Requires-Dist: exasol-mcp-server<3.0,>=2.0; extra == "mcp"
13
+ Provides-Extra: json-tables
14
+ Requires-Dist: exasol-json-tables<2.0,>=1.0; extra == "json-tables"
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: exasol-bundle
3
+ Version: 1.0.0
4
+ Summary: Universal bundler for Exasol MCP, JSON Tables, and Personal CLI
5
+ Author-email: Exasol Open Source <opensource@exasol.com>
6
+ License: MIT
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: exasol-mcp-server<3.0,>=2.0
10
+ Requires-Dist: exasol-json-tables<2.0,>=1.0
11
+ Provides-Extra: mcp
12
+ Requires-Dist: exasol-mcp-server<3.0,>=2.0; extra == "mcp"
13
+ Provides-Extra: json-tables
14
+ Requires-Dist: exasol-json-tables<2.0,>=1.0; extra == "json-tables"
@@ -0,0 +1,13 @@
1
+ MANIFEST.in
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ exasol_bundle/__init__.py
6
+ exasol_bundle/_install.py
7
+ exasol_bundle/cli.py
8
+ exasol_bundle.egg-info/PKG-INFO
9
+ exasol_bundle.egg-info/SOURCES.txt
10
+ exasol_bundle.egg-info/dependency_links.txt
11
+ exasol_bundle.egg-info/entry_points.txt
12
+ exasol_bundle.egg-info/requires.txt
13
+ exasol_bundle.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ exasol-bundle = exasol_bundle.cli:main
@@ -0,0 +1,8 @@
1
+ exasol-mcp-server<3.0,>=2.0
2
+ exasol-json-tables<2.0,>=1.0
3
+
4
+ [json-tables]
5
+ exasol-json-tables<2.0,>=1.0
6
+
7
+ [mcp]
8
+ exasol-mcp-server<3.0,>=2.0
@@ -0,0 +1 @@
1
+ exasol_bundle
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "exasol-bundle"
7
+ version = "1.0.0"
8
+ description = "Universal bundler for Exasol MCP, JSON Tables, and Personal CLI"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Exasol Open Source", email = "opensource@exasol.com" }
14
+ ]
15
+
16
+ # The meta-package dependencies. Pinned to major versions to prevent breaking changes.
17
+ dependencies = [
18
+ "exasol-mcp-server>=2.0,<3.0",
19
+ "exasol-json-tables>=1.0,<2.0"
20
+ ]
21
+
22
+ [project.optional-dependencies]
23
+ # Allows users to install subsets if they want
24
+ mcp = ["exasol-mcp-server>=2.0,<3.0"]
25
+ json-tables = ["exasol-json-tables>=1.0,<2.0"]
26
+
27
+ [project.scripts]
28
+ # Exposes a manual command to trigger the binary download if the hook fails
29
+ exasol-bundle = "exasol_bundle.cli:main"
30
+ [tool.setuptools]
31
+ packages = ["exasol_bundle"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,26 @@
1
+ import sys
2
+ import subprocess
3
+ from setuptools import setup
4
+ from setuptools.command.install import install
5
+
6
+ class PostInstallCommand(install):
7
+ """Post-installation hook to download the Go binary."""
8
+ def run(self):
9
+ # 1. Run standard pip installation for Python dependencies
10
+ install.run(self)
11
+
12
+ # 2. Execute the standalone _install.py script
13
+ print("\n--- Running Exasol Post-Install Hook ---")
14
+ try:
15
+ subprocess.check_call([sys.executable, "-m", "exasol_bundle._install"])
16
+ except subprocess.CalledProcessError as e:
17
+ print(f"\n[WARNING] Auto-download of exasol-personal failed (Code {e.returncode}).")
18
+ print("Please run manually: `exasol-bundle install-db`")
19
+
20
+ setup(
21
+ name="exasol-bundle", # ADD THIS: Forces sdist to recognize the package
22
+ version="1.0.0", # ADD THIS: Must match pyproject.toml
23
+ cmdclass={
24
+ 'install': PostInstallCommand,
25
+ },
26
+ )