syd 1.2.2__tar.gz → 1.2.3__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.
- {syd-1.2.2 → syd-1.2.3}/PKG-INFO +3 -2
- {syd-1.2.2 → syd-1.2.3}/pyproject.toml +2 -1
- {syd-1.2.2 → syd-1.2.3}/syd/__init__.py +1 -1
- {syd-1.2.2 → syd-1.2.3}/.gitignore +0 -0
- {syd-1.2.2 → syd-1.2.3}/LICENSE +0 -0
- {syd-1.2.2 → syd-1.2.3}/README.md +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/__init__.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/deployer.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/__init__.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/css/styles.css +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/css/viewer.css +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/api.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/config.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/plot.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/state.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/system_controls.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/ui_controls.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/utils.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/old_viewer.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/viewer.js +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/templates/__init__.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/templates/index.html +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/testing_principles.md +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/notebook_deployment/__init__.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/notebook_deployment/deployer.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/notebook_deployment/widgets.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/parameters.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/support.py +0 -0
- {syd-1.2.2 → syd-1.2.3}/syd/viewer.py +0 -0
{syd-1.2.2 → syd-1.2.3}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: syd
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: A Python package for making GUIs for data science easy.
|
|
5
5
|
Project-URL: Homepage, https://github.com/landoskape/syd
|
|
6
6
|
Author-email: Andrew Landau <andrew+tyler+landau+getridofthisanddtheplusses@gmail.com>
|
|
@@ -12,12 +12,13 @@ Classifier: Intended Audience :: Developers
|
|
|
12
12
|
Classifier: Intended Audience :: Science/Research
|
|
13
13
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.8
|
|
21
22
|
Requires-Dist: flask
|
|
22
23
|
Requires-Dist: ipykernel
|
|
23
24
|
Requires-Dist: ipympl
|
|
@@ -10,7 +10,7 @@ authors = [
|
|
|
10
10
|
]
|
|
11
11
|
description = "A Python package for making GUIs for data science easy."
|
|
12
12
|
readme = "README.md"
|
|
13
|
-
requires-python = ">=3.
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
14
|
dependencies = [
|
|
15
15
|
"ipywidgets",
|
|
16
16
|
"ipympl",
|
|
@@ -28,6 +28,7 @@ classifiers = [
|
|
|
28
28
|
"Intended Audience :: Science/Research",
|
|
29
29
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
30
30
|
"Operating System :: OS Independent",
|
|
31
|
+
"Programming Language :: Python :: 3.8",
|
|
31
32
|
"Programming Language :: Python :: 3.9",
|
|
32
33
|
"Programming Language :: Python :: 3.10",
|
|
33
34
|
"Programming Language :: Python :: 3.11",
|
|
File without changes
|
{syd-1.2.2 → syd-1.2.3}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|