jupytergis-lite 0.10.1__tar.gz → 0.12.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.
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/PKG-INFO +7 -6
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/jupytergis/__init__.py +1 -1
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/pyproject.toml +6 -5
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/.gitignore +0 -0
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/LICENSE +0 -0
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/README.md +0 -0
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/scripts/bump-version.py +0 -0
- {jupytergis_lite-0.10.1 → jupytergis_lite-0.12.0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jupytergis-lite
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.0
|
|
4
4
|
License: BSD 3-Clause License
|
|
5
5
|
|
|
6
6
|
Copyright (c) 2025, JupyterGIS contributors
|
|
@@ -39,15 +39,16 @@ Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
|
|
|
39
39
|
Classifier: License :: OSI Approved :: BSD License
|
|
40
40
|
Classifier: Programming Language :: Python
|
|
41
41
|
Classifier: Programming Language :: Python :: 3
|
|
42
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
43
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
44
42
|
Classifier: Programming Language :: Python :: 3.10
|
|
45
43
|
Classifier: Programming Language :: Python :: 3.11
|
|
46
44
|
Classifier: Programming Language :: Python :: 3.12
|
|
45
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
46
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
47
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
47
48
|
Requires-Python: >=3.10
|
|
48
|
-
Requires-Dist: jupytergis-core==0.
|
|
49
|
-
Requires-Dist: jupytergis-lab==0.
|
|
50
|
-
Requires-Dist: my-jupyter-shared-drive
|
|
49
|
+
Requires-Dist: jupytergis-core==0.12.0
|
|
50
|
+
Requires-Dist: jupytergis-lab==0.12.0
|
|
51
|
+
Requires-Dist: my-jupyter-shared-drive>=0.2.2
|
|
51
52
|
Description-Content-Type: text/markdown
|
|
52
53
|
|
|
53
54
|
# JupyterGIS meta-package for JupyterLite
|
|
@@ -9,19 +9,20 @@ classifiers = [
|
|
|
9
9
|
"Framework :: Jupyter :: JupyterLab :: 4",
|
|
10
10
|
"Framework :: Jupyter :: JupyterLab :: Extensions",
|
|
11
11
|
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
|
|
12
|
+
"Topic :: Scientific/Engineering :: GIS",
|
|
12
13
|
"License :: OSI Approved :: BSD License",
|
|
13
14
|
"Programming Language :: Python",
|
|
14
15
|
"Programming Language :: Python :: 3",
|
|
15
|
-
"Programming Language :: Python :: 3.8",
|
|
16
|
-
"Programming Language :: Python :: 3.9",
|
|
17
16
|
"Programming Language :: Python :: 3.10",
|
|
18
17
|
"Programming Language :: Python :: 3.11",
|
|
19
18
|
"Programming Language :: Python :: 3.12",
|
|
19
|
+
"Programming Language :: Python :: 3.13",
|
|
20
|
+
"Programming Language :: Python :: 3.14",
|
|
20
21
|
]
|
|
21
22
|
dependencies = [
|
|
22
|
-
"jupytergis_core==0.
|
|
23
|
-
"jupytergis_lab==0.
|
|
24
|
-
"my-jupyter-shared-drive
|
|
23
|
+
"jupytergis_core==0.12.0",
|
|
24
|
+
"jupytergis_lab==0.12.0",
|
|
25
|
+
"my-jupyter-shared-drive>=0.2.2",
|
|
25
26
|
]
|
|
26
27
|
dynamic = ["version"]
|
|
27
28
|
license = {file = "LICENSE"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|