zaturn 0.1.0__tar.gz → 0.1.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,14 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
11
+
12
+ # Project Related
13
+ sample_dbs/
14
+ localtests.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zaturn
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: AI Data Analysis MCP
5
5
  Author-email: Karthik Devan <krtdvn@gmail.com>
6
6
  Maintainer-email: Karthik Devan <krtdvn@gmail.com>
@@ -21,6 +21,7 @@ Requires-Dist: pyarrow>=19.0.1
21
21
  Requires-Dist: pymysql>=1.1.1
22
22
  Requires-Dist: python-lsp-server>=1.12.2
23
23
  Requires-Dist: seaborn>=0.13.2
24
+ Requires-Dist: setuptools>=78.1.0
24
25
  Requires-Dist: sqlalchemy>=2.0.40
25
26
  Requires-Dist: tabulate>=0.9.0
26
27
  Dynamic: license-file
@@ -68,9 +69,9 @@ Using an MCP like Zaturn will keep your data where it is, and enable AI to draft
68
69
  ## Installation & Setup
69
70
  1. Install [uv](https://docs.astral.sh/uv/getting-started/installation/#installation-methods)
70
71
 
71
- 2. Clone/Download this repository:
72
+ 2. Install Zaturn with uv:
72
73
  ```bash
73
- $ git clone https://github.com/kdqed/zaturn.git
74
+ $ uv tool install zaturn
74
75
  ```
75
76
 
76
77
  3. Add to MCP config, with data sources:
@@ -41,9 +41,9 @@ Using an MCP like Zaturn will keep your data where it is, and enable AI to draft
41
41
  ## Installation & Setup
42
42
  1. Install [uv](https://docs.astral.sh/uv/getting-started/installation/#installation-methods)
43
43
 
44
- 2. Clone/Download this repository:
44
+ 2. Install Zaturn with uv:
45
45
  ```bash
46
- $ git clone https://github.com/kdqed/zaturn.git
46
+ $ uv tool install zaturn
47
47
  ```
48
48
 
49
49
  3. Add to MCP config, with data sources:
Binary file
@@ -0,0 +1,10 @@
1
+ <svg width="512" height="512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="32" y="32" width="448" height="448" rx="32" ry="32"
3
+ style="fill: #182030;"/>
4
+ <path d="M128 128 A 181 60 45 0 1 384 384"
5
+ style="stroke: #ffffff; stroke-width: 32; fill: none; stroke-linecap: round;"/>
6
+ <circle cx="256" cy="256" r="120"
7
+ style="stroke: #ffffff; stroke-width: 32; fill: #182030;"/>
8
+ <path d="M128 128 Q192 256 288 224 L224 288 Q320 256 384 384"
9
+ style="stroke: #ffffff; stroke-width: 32; fill: none; stroke-linecap: round; stroke-linejoin: round;"/>
10
+ </svg>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "zaturn"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "AI Data Analysis MCP"
5
5
  authors = [
6
6
  {name = "Karthik Devan", email = "krtdvn@gmail.com"},
@@ -21,6 +21,7 @@ dependencies = [
21
21
  "pymysql>=1.1.1",
22
22
  "python-lsp-server>=1.12.2",
23
23
  "seaborn>=0.13.2",
24
+ "setuptools>=78.1.0",
24
25
  "sqlalchemy>=2.0.40",
25
26
  "tabulate>=0.9.0",
26
27
  ]
@@ -35,14 +36,21 @@ Issues = "https://github.com/kdqed/zaturn/issues"
35
36
  CI = "https://github.com/kdqed/zaturn/actions"
36
37
 
37
38
  [build-system]
38
- requires = ["setuptools"]
39
+ requires = [
40
+ "setuptools>=60",
41
+ "setuptools-scm>=8.0"
42
+ ]
39
43
  build-backend = "setuptools.build_meta"
40
44
 
41
45
  [tool.setuptools]
42
46
  include-package-data = false
43
47
 
44
48
  [tool.setuptools.packages.find]
45
- exclude = ["docs*", "example_data*", "brand*"]
49
+ exclude = ["docs*", "brand*"]
50
+ include = ["zaturn*"]
51
+
52
+ [tool.setuptools.package-data]
53
+ "*" = ["*.*"]
46
54
 
47
55
  [dependency-groups]
48
56
  dev = []