tigrbl_engine_snowflake 0.1.1.dev24__tar.gz → 0.1.11.dev1__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.
Files changed (16) hide show
  1. {tigrbl_engine_snowflake-0.1.1.dev24/src/tigrbl_engine_snowflake.egg-info → tigrbl_engine_snowflake-0.1.11.dev1}/PKG-INFO +20 -42
  2. tigrbl_engine_snowflake-0.1.11.dev1/README.md +23 -0
  3. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/pyproject.toml +4 -4
  4. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1/src/tigrbl_engine_snowflake.egg-info}/PKG-INFO +20 -42
  5. tigrbl_engine_snowflake-0.1.1.dev24/README.md +0 -45
  6. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/LICENSE +0 -0
  7. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/setup.cfg +0 -0
  8. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake/__init__.py +0 -0
  9. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake/engine.py +0 -0
  10. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake/session.py +0 -0
  11. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake.egg-info/SOURCES.txt +0 -0
  12. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake.egg-info/dependency_links.txt +0 -0
  13. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake.egg-info/entry_points.txt +0 -0
  14. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake.egg-info/requires.txt +0 -0
  15. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/src/tigrbl_engine_snowflake.egg-info/top_level.txt +0 -0
  16. {tigrbl_engine_snowflake-0.1.1.dev24 → tigrbl_engine_snowflake-0.1.11.dev1}/tests/test_smoke.py +0 -0
@@ -1,25 +1,25 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_snowflake
3
- Version: 0.1.1.dev24
3
+ Version: 0.1.11.dev1
4
4
  Summary: Tigrbl engine plugin for Snowflake, auto-registered via entry points.
5
5
  Author-email: Jacob Stewart <jacob@swarmauri.com>
6
- License: Apache-2.0
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
8
8
  Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_snowflake
9
9
  Keywords: tigrbl,engine,plugin,snowflake,database,analytics
10
10
  Classifier: Development Status :: 1 - Planning
11
- Classifier: License :: OSI Approved :: Apache Software License
12
11
  Classifier: Programming Language :: Python
13
12
  Classifier: Programming Language :: Python :: 3
14
13
  Classifier: Programming Language :: Python :: 3 :: Only
15
14
  Classifier: Programming Language :: Python :: 3.10
16
15
  Classifier: Programming Language :: Python :: 3.11
17
16
  Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
18
  Classifier: Environment :: Plugins
19
19
  Classifier: Intended Audience :: Developers
20
20
  Classifier: Topic :: Database
21
21
  Classifier: Topic :: Software Development :: Libraries
22
- Requires-Python: <3.13,>=3.10
22
+ Requires-Python: <3.14,>=3.10
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  Requires-Dist: SQLAlchemy<3.0,>=2.0
@@ -29,46 +29,24 @@ Dynamic: license-file
29
29
 
30
30
  # tigrbl_engine_snowflake
31
31
 
32
- **Tigrbl engine plugin for Snowflake**, auto-registered via the `tigrbl.engine` entry-point group.
32
+ This file is a package-local distribution entry point.
33
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
33
34
 
34
- ## Install
35
+ ## Canonical repository docs
35
36
 
36
- ```bash
37
- pip install -e .
38
- ```
37
+ - `README.md`
38
+ - `docs/README.md`
39
+ - `docs/conformance/CURRENT_TARGET.md`
40
+ - `docs/conformance/CURRENT_STATE.md`
41
+ - `docs/conformance/NEXT_STEPS.md`
42
+ - `docs/governance/DOC_POINTERS.md`
43
+ - `docs/developer/PACKAGE_CATALOG.md`
44
+ - `docs/developer/PACKAGE_LAYOUT.md`
39
45
 
40
- ## Usage (inside Tigrbl)
46
+ ## Package identity
41
47
 
42
- ```python
43
- from tigrbl.engine import Engine
44
- from tigrbl.engine.engine_spec import EngineSpec
48
+ - workspace path: `pkgs/engines/tigrbl_engine_snowflake`
49
+ - workspace class: engine package
50
+ - implementation layout: `src/tigrbl_engine_snowflake/`
45
51
 
46
- # DSN (Snowflake SQLAlchemy URL)
47
- spec = EngineSpec(kind="snowflake", dsn="snowflake://USER:PWD@ACCOUNT/DB/SCHEMA?warehouse=WH&role=ROLE")
48
-
49
- # Or provide a mapping; the plugin builds the DSN
50
- spec = EngineSpec(kind="snowflake", mapping={
51
- "account": "myacct-xy123",
52
- "user": "USER",
53
- "pwd": "PWD",
54
- "db": "DB",
55
- "schema": "PUBLIC",
56
- "warehouse": "COMPUTE_WH",
57
- "role": "SYSADMIN",
58
- "pool_size": 10,
59
- "max_overflow": 20
60
- })
61
-
62
- engine = Engine(spec)
63
- with engine.session() as s:
64
- s.execute("SELECT CURRENT_ROLE()").all()
65
- ```
66
-
67
- ## Entry-point
68
-
69
- Declared in `pyproject.toml`:
70
-
71
- ```toml
72
- [project.entry-points."tigrbl.engine"]
73
- snowflake = "tigrbl_engine_snowflake:register"
74
- ```
52
+ Long-form repository documentation is governed from `docs/`.
@@ -0,0 +1,23 @@
1
+ # tigrbl_engine_snowflake
2
+
3
+ This file is a package-local distribution entry point.
4
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
5
+
6
+ ## Canonical repository docs
7
+
8
+ - `README.md`
9
+ - `docs/README.md`
10
+ - `docs/conformance/CURRENT_TARGET.md`
11
+ - `docs/conformance/CURRENT_STATE.md`
12
+ - `docs/conformance/NEXT_STEPS.md`
13
+ - `docs/governance/DOC_POINTERS.md`
14
+ - `docs/developer/PACKAGE_CATALOG.md`
15
+ - `docs/developer/PACKAGE_LAYOUT.md`
16
+
17
+ ## Package identity
18
+
19
+ - workspace path: `pkgs/engines/tigrbl_engine_snowflake`
20
+ - workspace class: engine package
21
+ - implementation layout: `src/tigrbl_engine_snowflake/`
22
+
23
+ Long-form repository documentation is governed from `docs/`.
@@ -4,21 +4,21 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "tigrbl_engine_snowflake"
7
- version = "0.1.1.dev24"
7
+ version = "0.1.11.dev1"
8
8
  description = "Tigrbl engine plugin for Snowflake, auto-registered via entry points."
9
9
  readme = "README.md"
10
- requires-python = ">=3.10,<3.13"
11
- license = { text = "Apache-2.0" }
10
+ requires-python = ">=3.10,<3.14"
11
+ license = "Apache-2.0"
12
12
  authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
13
13
  classifiers = [
14
14
  "Development Status :: 1 - Planning",
15
- "License :: OSI Approved :: Apache Software License",
16
15
  "Programming Language :: Python",
17
16
  "Programming Language :: Python :: 3",
18
17
  "Programming Language :: Python :: 3 :: Only",
19
18
  "Programming Language :: Python :: 3.10",
20
19
  "Programming Language :: Python :: 3.11",
21
20
  "Programming Language :: Python :: 3.12",
21
+ "Programming Language :: Python :: 3.13",
22
22
  "Environment :: Plugins",
23
23
  "Intended Audience :: Developers",
24
24
  "Topic :: Database",
@@ -1,25 +1,25 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tigrbl_engine_snowflake
3
- Version: 0.1.1.dev24
3
+ Version: 0.1.11.dev1
4
4
  Summary: Tigrbl engine plugin for Snowflake, auto-registered via entry points.
5
5
  Author-email: Jacob Stewart <jacob@swarmauri.com>
6
- License: Apache-2.0
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
8
8
  Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_snowflake
9
9
  Keywords: tigrbl,engine,plugin,snowflake,database,analytics
10
10
  Classifier: Development Status :: 1 - Planning
11
- Classifier: License :: OSI Approved :: Apache Software License
12
11
  Classifier: Programming Language :: Python
13
12
  Classifier: Programming Language :: Python :: 3
14
13
  Classifier: Programming Language :: Python :: 3 :: Only
15
14
  Classifier: Programming Language :: Python :: 3.10
16
15
  Classifier: Programming Language :: Python :: 3.11
17
16
  Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
18
  Classifier: Environment :: Plugins
19
19
  Classifier: Intended Audience :: Developers
20
20
  Classifier: Topic :: Database
21
21
  Classifier: Topic :: Software Development :: Libraries
22
- Requires-Python: <3.13,>=3.10
22
+ Requires-Python: <3.14,>=3.10
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  Requires-Dist: SQLAlchemy<3.0,>=2.0
@@ -29,46 +29,24 @@ Dynamic: license-file
29
29
 
30
30
  # tigrbl_engine_snowflake
31
31
 
32
- **Tigrbl engine plugin for Snowflake**, auto-registered via the `tigrbl.engine` entry-point group.
32
+ This file is a package-local distribution entry point.
33
+ It is not the authoritative location for repository governance, current target status, current state reporting, certification claims, or release evidence.
33
34
 
34
- ## Install
35
+ ## Canonical repository docs
35
36
 
36
- ```bash
37
- pip install -e .
38
- ```
37
+ - `README.md`
38
+ - `docs/README.md`
39
+ - `docs/conformance/CURRENT_TARGET.md`
40
+ - `docs/conformance/CURRENT_STATE.md`
41
+ - `docs/conformance/NEXT_STEPS.md`
42
+ - `docs/governance/DOC_POINTERS.md`
43
+ - `docs/developer/PACKAGE_CATALOG.md`
44
+ - `docs/developer/PACKAGE_LAYOUT.md`
39
45
 
40
- ## Usage (inside Tigrbl)
46
+ ## Package identity
41
47
 
42
- ```python
43
- from tigrbl.engine import Engine
44
- from tigrbl.engine.engine_spec import EngineSpec
48
+ - workspace path: `pkgs/engines/tigrbl_engine_snowflake`
49
+ - workspace class: engine package
50
+ - implementation layout: `src/tigrbl_engine_snowflake/`
45
51
 
46
- # DSN (Snowflake SQLAlchemy URL)
47
- spec = EngineSpec(kind="snowflake", dsn="snowflake://USER:PWD@ACCOUNT/DB/SCHEMA?warehouse=WH&role=ROLE")
48
-
49
- # Or provide a mapping; the plugin builds the DSN
50
- spec = EngineSpec(kind="snowflake", mapping={
51
- "account": "myacct-xy123",
52
- "user": "USER",
53
- "pwd": "PWD",
54
- "db": "DB",
55
- "schema": "PUBLIC",
56
- "warehouse": "COMPUTE_WH",
57
- "role": "SYSADMIN",
58
- "pool_size": 10,
59
- "max_overflow": 20
60
- })
61
-
62
- engine = Engine(spec)
63
- with engine.session() as s:
64
- s.execute("SELECT CURRENT_ROLE()").all()
65
- ```
66
-
67
- ## Entry-point
68
-
69
- Declared in `pyproject.toml`:
70
-
71
- ```toml
72
- [project.entry-points."tigrbl.engine"]
73
- snowflake = "tigrbl_engine_snowflake:register"
74
- ```
52
+ Long-form repository documentation is governed from `docs/`.
@@ -1,45 +0,0 @@
1
- # tigrbl_engine_snowflake
2
-
3
- **Tigrbl engine plugin for Snowflake**, auto-registered via the `tigrbl.engine` entry-point group.
4
-
5
- ## Install
6
-
7
- ```bash
8
- pip install -e .
9
- ```
10
-
11
- ## Usage (inside Tigrbl)
12
-
13
- ```python
14
- from tigrbl.engine import Engine
15
- from tigrbl.engine.engine_spec import EngineSpec
16
-
17
- # DSN (Snowflake SQLAlchemy URL)
18
- spec = EngineSpec(kind="snowflake", dsn="snowflake://USER:PWD@ACCOUNT/DB/SCHEMA?warehouse=WH&role=ROLE")
19
-
20
- # Or provide a mapping; the plugin builds the DSN
21
- spec = EngineSpec(kind="snowflake", mapping={
22
- "account": "myacct-xy123",
23
- "user": "USER",
24
- "pwd": "PWD",
25
- "db": "DB",
26
- "schema": "PUBLIC",
27
- "warehouse": "COMPUTE_WH",
28
- "role": "SYSADMIN",
29
- "pool_size": 10,
30
- "max_overflow": 20
31
- })
32
-
33
- engine = Engine(spec)
34
- with engine.session() as s:
35
- s.execute("SELECT CURRENT_ROLE()").all()
36
- ```
37
-
38
- ## Entry-point
39
-
40
- Declared in `pyproject.toml`:
41
-
42
- ```toml
43
- [project.entry-points."tigrbl.engine"]
44
- snowflake = "tigrbl_engine_snowflake:register"
45
- ```