prismnote 0.4.1__tar.gz → 0.4.2__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.
- {prismnote-0.4.1/python/prismnote.egg-info → prismnote-0.4.2}/PKG-INFO +12 -6
- {prismnote-0.4.1 → prismnote-0.4.2}/pyproject.toml +14 -10
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote/__init__.py +1 -1
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote/_cli.py +1 -1
- {prismnote-0.4.1 → prismnote-0.4.2/python/prismnote.egg-info}/PKG-INFO +12 -6
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote.egg-info/requires.txt +12 -5
- {prismnote-0.4.1 → prismnote-0.4.2}/LICENSE +0 -0
- {prismnote-0.4.1 → prismnote-0.4.2}/README.md +0 -0
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote/__main__.py +0 -0
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote.egg-info/SOURCES.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote.egg-info/dependency_links.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote.egg-info/entry_points.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.2}/python/prismnote.egg-info/top_level.txt +0 -0
- {prismnote-0.4.1 → prismnote-0.4.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: prismnote
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: Modern, open-source Jupyter-compatible data science notebook with Rust performance
|
|
5
5
|
Author-email: Georgi Mammen Mullassery <mullassery@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -28,17 +28,23 @@ License-File: LICENSE
|
|
|
28
28
|
Requires-Dist: ipykernel>=6.0
|
|
29
29
|
Requires-Dist: jupyter>=1.0
|
|
30
30
|
Provides-Extra: sql
|
|
31
|
-
Requires-Dist:
|
|
31
|
+
Requires-Dist: duckdb>=0.9; extra == "sql"
|
|
32
|
+
Requires-Dist: pg8000>=1.30; extra == "sql"
|
|
32
33
|
Requires-Dist: pymysql>=1.0; extra == "sql"
|
|
33
34
|
Provides-Extra: postgres
|
|
34
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: pg8000>=1.30; extra == "postgres"
|
|
35
36
|
Provides-Extra: mysql
|
|
36
37
|
Requires-Dist: pymysql>=1.0; extra == "mysql"
|
|
38
|
+
Provides-Extra: duckdb
|
|
39
|
+
Requires-Dist: duckdb>=0.9; extra == "duckdb"
|
|
37
40
|
Provides-Extra: cloud
|
|
38
|
-
Requires-Dist: snowflake-connector-python>=3.0; extra == "cloud"
|
|
41
|
+
Requires-Dist: snowflake-connector-python[pandas]>=3.0; extra == "cloud"
|
|
39
42
|
Requires-Dist: google-cloud-bigquery>=3.0; extra == "cloud"
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
43
|
+
Requires-Dist: db-dtypes>=1.0; extra == "cloud"
|
|
44
|
+
Requires-Dist: redshift_connector>=2.0; extra == "cloud"
|
|
45
|
+
Requires-Dist: databricks-sql-connector>=2.0; extra == "cloud"
|
|
46
|
+
Requires-Dist: pyathena>=3.0; extra == "cloud"
|
|
47
|
+
Requires-Dist: trino>=0.328; extra == "cloud"
|
|
42
48
|
Provides-Extra: ai
|
|
43
49
|
Requires-Dist: anthropic>=0.7; extra == "ai"
|
|
44
50
|
Provides-Extra: openai
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "prismnote"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.2"
|
|
8
8
|
description = "Modern, open-source Jupyter-compatible data science notebook with Rust performance"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -32,17 +32,21 @@ dependencies = [
|
|
|
32
32
|
]
|
|
33
33
|
|
|
34
34
|
[project.optional-dependencies]
|
|
35
|
-
# Database support
|
|
36
|
-
sql = ["
|
|
37
|
-
postgres = ["
|
|
38
|
-
mysql = ["pymysql>=1.0"]
|
|
35
|
+
# Database support — permissively-licensed (OSS) drivers only. See CONNECTORS.md.
|
|
36
|
+
sql = ["duckdb>=0.9", "pg8000>=1.30", "pymysql>=1.0"] # MIT / BSD / MIT
|
|
37
|
+
postgres = ["pg8000>=1.30"] # BSD (pure-Python)
|
|
38
|
+
mysql = ["pymysql>=1.0"] # MIT
|
|
39
|
+
duckdb = ["duckdb>=0.9"] # MIT
|
|
39
40
|
|
|
40
|
-
# Cloud warehouses
|
|
41
|
+
# Cloud warehouses — official open-source clients (Apache-2.0 / MIT)
|
|
41
42
|
cloud = [
|
|
42
|
-
"snowflake-connector-python>=3.0",
|
|
43
|
-
"google-cloud-bigquery>=3.0",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
43
|
+
"snowflake-connector-python[pandas]>=3.0", # Apache-2.0
|
|
44
|
+
"google-cloud-bigquery>=3.0", # Apache-2.0
|
|
45
|
+
"db-dtypes>=1.0", # Apache-2.0 (BigQuery -> pandas)
|
|
46
|
+
"redshift_connector>=2.0", # Apache-2.0
|
|
47
|
+
"databricks-sql-connector>=2.0", # Apache-2.0
|
|
48
|
+
"pyathena>=3.0", # MIT
|
|
49
|
+
"trino>=0.328", # Apache-2.0
|
|
46
50
|
]
|
|
47
51
|
|
|
48
52
|
# AI features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: prismnote
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: Modern, open-source Jupyter-compatible data science notebook with Rust performance
|
|
5
5
|
Author-email: Georgi Mammen Mullassery <mullassery@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -28,17 +28,23 @@ License-File: LICENSE
|
|
|
28
28
|
Requires-Dist: ipykernel>=6.0
|
|
29
29
|
Requires-Dist: jupyter>=1.0
|
|
30
30
|
Provides-Extra: sql
|
|
31
|
-
Requires-Dist:
|
|
31
|
+
Requires-Dist: duckdb>=0.9; extra == "sql"
|
|
32
|
+
Requires-Dist: pg8000>=1.30; extra == "sql"
|
|
32
33
|
Requires-Dist: pymysql>=1.0; extra == "sql"
|
|
33
34
|
Provides-Extra: postgres
|
|
34
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: pg8000>=1.30; extra == "postgres"
|
|
35
36
|
Provides-Extra: mysql
|
|
36
37
|
Requires-Dist: pymysql>=1.0; extra == "mysql"
|
|
38
|
+
Provides-Extra: duckdb
|
|
39
|
+
Requires-Dist: duckdb>=0.9; extra == "duckdb"
|
|
37
40
|
Provides-Extra: cloud
|
|
38
|
-
Requires-Dist: snowflake-connector-python>=3.0; extra == "cloud"
|
|
41
|
+
Requires-Dist: snowflake-connector-python[pandas]>=3.0; extra == "cloud"
|
|
39
42
|
Requires-Dist: google-cloud-bigquery>=3.0; extra == "cloud"
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
43
|
+
Requires-Dist: db-dtypes>=1.0; extra == "cloud"
|
|
44
|
+
Requires-Dist: redshift_connector>=2.0; extra == "cloud"
|
|
45
|
+
Requires-Dist: databricks-sql-connector>=2.0; extra == "cloud"
|
|
46
|
+
Requires-Dist: pyathena>=3.0; extra == "cloud"
|
|
47
|
+
Requires-Dist: trino>=0.328; extra == "cloud"
|
|
42
48
|
Provides-Extra: ai
|
|
43
49
|
Requires-Dist: anthropic>=0.7; extra == "ai"
|
|
44
50
|
Provides-Extra: openai
|
|
@@ -5,16 +5,22 @@ jupyter>=1.0
|
|
|
5
5
|
anthropic>=0.7
|
|
6
6
|
|
|
7
7
|
[cloud]
|
|
8
|
-
snowflake-connector-python>=3.0
|
|
8
|
+
snowflake-connector-python[pandas]>=3.0
|
|
9
9
|
google-cloud-bigquery>=3.0
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
db-dtypes>=1.0
|
|
11
|
+
redshift_connector>=2.0
|
|
12
|
+
databricks-sql-connector>=2.0
|
|
13
|
+
pyathena>=3.0
|
|
14
|
+
trino>=0.328
|
|
12
15
|
|
|
13
16
|
[dev]
|
|
14
17
|
pytest>=7.0
|
|
15
18
|
black>=22.0
|
|
16
19
|
ruff>=0.1.0
|
|
17
20
|
|
|
21
|
+
[duckdb]
|
|
22
|
+
duckdb>=0.9
|
|
23
|
+
|
|
18
24
|
[mysql]
|
|
19
25
|
pymysql>=1.0
|
|
20
26
|
|
|
@@ -22,12 +28,13 @@ pymysql>=1.0
|
|
|
22
28
|
openai>=1.0
|
|
23
29
|
|
|
24
30
|
[postgres]
|
|
25
|
-
|
|
31
|
+
pg8000>=1.30
|
|
26
32
|
|
|
27
33
|
[spark]
|
|
28
34
|
pyspark>=3.0
|
|
29
35
|
pyarrow>=10
|
|
30
36
|
|
|
31
37
|
[sql]
|
|
32
|
-
|
|
38
|
+
duckdb>=0.9
|
|
39
|
+
pg8000>=1.30
|
|
33
40
|
pymysql>=1.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|