exasol-quickstart 0.0.1__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 krishna-exasol
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: exasol-quickstart
3
+ Version: 0.0.1
4
+ Summary: One command to try Exasol with AI add-ons (MCP Server, JSON Tables). Preview — name placeholder.
5
+ Project-URL: Homepage, https://github.com/krishna-exasol/exasol-quickstart
6
+ Project-URL: Documentation, https://krishna-exasol.github.io/bundle-installation-methods/case-studies/recommended-approach/
7
+ Author: krishna-exasol
8
+ License: MIT
9
+ License-File: LICENSE
10
+ Keywords: analytics,database,exasol,installer,json-tables,mcp,quickstart
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Requires-Python: >=3.9
17
+ Description-Content-Type: text/markdown
18
+
19
+ # exasol-quickstart
20
+
21
+ **One command to try Exasol with AI add-ons** — a base Exasol database plus the
22
+ **MCP Server** (LLM/agent access) and, optionally, **JSON Tables** (JSON → SQL),
23
+ chosen automatically for your operating system.
24
+
25
+ > **Status:** `0.0.1` is a name-reservation placeholder. The full platform-aware
26
+ > installer is in progress.
27
+
28
+ ## Planned usage
29
+
30
+ ```bash
31
+ pipx install exasol-quickstart
32
+ exasol-quickstart # base + MCP server
33
+ exasol-quickstart --with json-tables # base + MCP + JSON Tables
34
+ ```
35
+
36
+ ## How it will work (per OS)
37
+
38
+ | OS | Base | Add-ons | Docker? |
39
+ |----|------|---------|---------|
40
+ | macOS (Apple Silicon) | Exasol Personal (local VM) | host: MCP + JSON Tables | No |
41
+ | Linux | Exasol Nano (native `.run`) | Nano stacks | No |
42
+ | Windows | Exasol Nano (Docker) | Nano stacks | Yes |
43
+
44
+ Full design, decision graph, pros/cons, and requirements:
45
+ <https://krishna-exasol.github.io/bundle-installation-methods/case-studies/recommended-approach/>
46
+
47
+ ## License
48
+
49
+ [MIT](LICENSE).
@@ -0,0 +1,31 @@
1
+ # exasol-quickstart
2
+
3
+ **One command to try Exasol with AI add-ons** — a base Exasol database plus the
4
+ **MCP Server** (LLM/agent access) and, optionally, **JSON Tables** (JSON → SQL),
5
+ chosen automatically for your operating system.
6
+
7
+ > **Status:** `0.0.1` is a name-reservation placeholder. The full platform-aware
8
+ > installer is in progress.
9
+
10
+ ## Planned usage
11
+
12
+ ```bash
13
+ pipx install exasol-quickstart
14
+ exasol-quickstart # base + MCP server
15
+ exasol-quickstart --with json-tables # base + MCP + JSON Tables
16
+ ```
17
+
18
+ ## How it will work (per OS)
19
+
20
+ | OS | Base | Add-ons | Docker? |
21
+ |----|------|---------|---------|
22
+ | macOS (Apple Silicon) | Exasol Personal (local VM) | host: MCP + JSON Tables | No |
23
+ | Linux | Exasol Nano (native `.run`) | Nano stacks | No |
24
+ | Windows | Exasol Nano (Docker) | Nano stacks | Yes |
25
+
26
+ Full design, decision graph, pros/cons, and requirements:
27
+ <https://krishna-exasol.github.io/bundle-installation-methods/case-studies/recommended-approach/>
28
+
29
+ ## License
30
+
31
+ [MIT](LICENSE).
@@ -0,0 +1,6 @@
1
+ """exasol-quickstart — one command to try Exasol with AI add-ons.
2
+
3
+ This 0.0.1 release reserves the name on PyPI. The full installer is in progress.
4
+ """
5
+
6
+ __version__ = "0.0.1"
@@ -0,0 +1,29 @@
1
+ """Console entry point for `exasol-quickstart`.
2
+
3
+ This is the 0.0.1 placeholder that claims the PyPI name. The full
4
+ platform-aware installer (Personal on macOS / Nano elsewhere + MCP and
5
+ JSON Tables add-ons) is in progress.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ import platform
11
+
12
+ from . import __version__
13
+
14
+ DOCS_URL = "https://krishna-exasol.github.io/bundle-installation-methods/case-studies/recommended-approach/"
15
+
16
+
17
+ def main() -> None:
18
+ system = platform.system() or "unknown"
19
+ print(f"exasol-quickstart {__version__}")
20
+ print()
21
+ print("One command to try Exasol with AI add-ons (MCP Server, JSON Tables).")
22
+ print("The full installer is in progress — this release reserves the name.")
23
+ print()
24
+ print(f"Detected platform: {system} ({platform.machine()})")
25
+ print(f"Plan & docs: {DOCS_URL}")
26
+
27
+
28
+ if __name__ == "__main__":
29
+ main()
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "exasol-quickstart"
7
+ version = "0.0.1"
8
+ description = "One command to try Exasol with AI add-ons (MCP Server, JSON Tables). Preview — name placeholder."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "krishna-exasol" }]
13
+ keywords = ["exasol", "mcp", "json-tables", "installer", "quickstart", "analytics", "database"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/krishna-exasol/exasol-quickstart"
24
+ Documentation = "https://krishna-exasol.github.io/bundle-installation-methods/case-studies/recommended-approach/"
25
+
26
+ [project.scripts]
27
+ exasol-quickstart = "exasol_quickstart.cli:main"
28
+
29
+ [tool.hatch.build.targets.wheel]
30
+ packages = ["exasol_quickstart"]