sweatstack 0.22.1__tar.gz → 0.24.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.
- {sweatstack-0.22.1 → sweatstack-0.24.0}/PKG-INFO +4 -2
- {sweatstack-0.22.1 → sweatstack-0.24.0}/pyproject.toml +5 -2
- {sweatstack-0.22.1 → sweatstack-0.24.0}/uv.lock +18 -2
- {sweatstack-0.22.1 → sweatstack-0.24.0}/.gitignore +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/.python-version +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/DEVELOPMENT.md +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/Makefile +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/README.md +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/playground/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/playground/README.md +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/playground/Sweat Stack examples/Getting started.ipynb +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/playground/Untitled.ipynb +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/playground/hello.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/playground/pyproject.toml +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/Sweat Stack examples/Getting started.ipynb +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/__init__.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/cli.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/client.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/constants.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/ipython_init.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/jupyterlab_oauth2_startup.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/openapi_schemas.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/py.typed +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/schemas.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/streamlit.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/sweatshell.py +0 -0
- {sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/utils.py +0 -0
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sweatstack
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.0
|
|
4
4
|
Summary: The official Python client for SweatStack
|
|
5
5
|
Author-email: Aart Goossens <aart@gssns.io>
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
7
|
Requires-Dist: httpx>=0.28.1
|
|
8
8
|
Requires-Dist: pandas>=2.2.3
|
|
9
|
-
Requires-Dist: pyarrow>=
|
|
9
|
+
Requires-Dist: pyarrow>=18.0.0
|
|
10
10
|
Requires-Dist: pydantic>=2.10.5
|
|
11
11
|
Provides-Extra: jupyter
|
|
12
12
|
Requires-Dist: ipython>=8.31.0; extra == 'jupyter'
|
|
13
13
|
Requires-Dist: jupyterlab>=4.3.4; extra == 'jupyter'
|
|
14
14
|
Requires-Dist: matplotlib>=3.10.0; extra == 'jupyter'
|
|
15
|
+
Provides-Extra: pyodide
|
|
16
|
+
Requires-Dist: pyodide-httpx>=0.2.0; extra == 'pyodide'
|
|
15
17
|
Provides-Extra: streamlit
|
|
16
18
|
Requires-Dist: streamlit>=1.42.0; extra == 'streamlit'
|
|
17
19
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "sweatstack"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.24.0"
|
|
4
4
|
description = "The official Python client for SweatStack"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -10,7 +10,7 @@ requires-python = ">=3.12"
|
|
|
10
10
|
dependencies = [
|
|
11
11
|
"httpx>=0.28.1",
|
|
12
12
|
"pandas>=2.2.3",
|
|
13
|
-
"pyarrow>=
|
|
13
|
+
"pyarrow>=18.0.0",
|
|
14
14
|
"pydantic>=2.10.5",
|
|
15
15
|
]
|
|
16
16
|
|
|
@@ -23,6 +23,9 @@ jupyter = [
|
|
|
23
23
|
"jupyterlab>=4.3.4",
|
|
24
24
|
"matplotlib>=3.10.0",
|
|
25
25
|
]
|
|
26
|
+
pyodide = [
|
|
27
|
+
"pyodide-httpx>=0.2.0",
|
|
28
|
+
]
|
|
26
29
|
|
|
27
30
|
[build-system]
|
|
28
31
|
requires = ["hatchling"]
|
|
@@ -1532,6 +1532,18 @@ wheels = [
|
|
|
1532
1532
|
{ url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 },
|
|
1533
1533
|
]
|
|
1534
1534
|
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "pyodide-httpx"
|
|
1537
|
+
version = "0.2.0"
|
|
1538
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1539
|
+
dependencies = [
|
|
1540
|
+
{ name = "httpx" },
|
|
1541
|
+
]
|
|
1542
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cc/61/dac172a07e710f24f9027919448d418ec452884d62c3fec5469b877d4c1c/pyodide_httpx-0.2.0.tar.gz", hash = "sha256:d4c976cf2cf6ea1133f759a62cf0f01e89b3f8c29edb28734e3af0208241d001", size = 13022 }
|
|
1543
|
+
wheels = [
|
|
1544
|
+
{ url = "https://files.pythonhosted.org/packages/08/33/c338c68d41ce6a2b6aa57f265a998602b70f68a2b9f356632680a86c67ad/pyodide_httpx-0.2.0-py3-none-any.whl", hash = "sha256:03d8519549a95aef3ff6bff1e88df4d72e687c46113772806ae8793b100fb734", size = 14960 },
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1535
1547
|
[[package]]
|
|
1536
1548
|
name = "pyparsing"
|
|
1537
1549
|
version = "3.2.1"
|
|
@@ -1874,7 +1886,7 @@ wheels = [
|
|
|
1874
1886
|
|
|
1875
1887
|
[[package]]
|
|
1876
1888
|
name = "sweatstack"
|
|
1877
|
-
version = "0.
|
|
1889
|
+
version = "0.23.0"
|
|
1878
1890
|
source = { editable = "." }
|
|
1879
1891
|
dependencies = [
|
|
1880
1892
|
{ name = "httpx" },
|
|
@@ -1889,6 +1901,9 @@ jupyter = [
|
|
|
1889
1901
|
{ name = "jupyterlab" },
|
|
1890
1902
|
{ name = "matplotlib" },
|
|
1891
1903
|
]
|
|
1904
|
+
pyodide = [
|
|
1905
|
+
{ name = "pyodide-httpx" },
|
|
1906
|
+
]
|
|
1892
1907
|
streamlit = [
|
|
1893
1908
|
{ name = "streamlit" },
|
|
1894
1909
|
]
|
|
@@ -1905,8 +1920,9 @@ requires-dist = [
|
|
|
1905
1920
|
{ name = "jupyterlab", marker = "extra == 'jupyter'", specifier = ">=4.3.4" },
|
|
1906
1921
|
{ name = "matplotlib", marker = "extra == 'jupyter'", specifier = ">=3.10.0" },
|
|
1907
1922
|
{ name = "pandas", specifier = ">=2.2.3" },
|
|
1908
|
-
{ name = "pyarrow", specifier = ">=
|
|
1923
|
+
{ name = "pyarrow", specifier = ">=18.0.0" },
|
|
1909
1924
|
{ name = "pydantic", specifier = ">=2.10.5" },
|
|
1925
|
+
{ name = "pyodide-httpx", marker = "extra == 'pyodide'", specifier = ">=0.2.0" },
|
|
1910
1926
|
{ name = "streamlit", marker = "extra == 'streamlit'", specifier = ">=1.42.0" },
|
|
1911
1927
|
]
|
|
1912
1928
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sweatstack-0.22.1 → sweatstack-0.24.0}/playground/.ipynb_checkpoints/Untitled-checkpoint.ipynb
RENAMED
|
File without changes
|
|
File without changes
|
{sweatstack-0.22.1 → sweatstack-0.24.0}/playground/Sweat Stack examples/Getting started.ipynb
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sweatstack-0.22.1 → sweatstack-0.24.0}/src/sweatstack/Sweat Stack examples/Getting started.ipynb
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
|