solara-server 1.31.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.
@@ -0,0 +1,89 @@
1
+ *.o
2
+ *.so
3
+ *.mkv
4
+ *.mk4
5
+ #/*.png
6
+ *.eps
7
+ *.pgm
8
+ *.pdf
9
+ *.fld
10
+ *.vtk
11
+ *.mp4
12
+ */**/*.pyc
13
+ *.pyc
14
+ jenkins/jenkins.war
15
+ /nosetests.xml
16
+ /.idea
17
+ misc/experiments/
18
+ /.coverage
19
+ /coverage.xml
20
+
21
+
22
+ Untitled*.ipynb
23
+
24
+ /experiments/*
25
+ /htmlcov
26
+
27
+ InterestingSubspacesNew.txt
28
+ Makefile.in
29
+ config.guess
30
+ config.sub
31
+ libtool
32
+ ltmain.sh
33
+ m4/libtool.m4
34
+ m4/ltoptions.m4
35
+ m4/ltversion.m4
36
+ m4/lt~obsolete.m4
37
+ aclocal.m4
38
+ autom4te.cache
39
+ config.h
40
+ config.h.in
41
+ config.log
42
+ config.status
43
+ configure
44
+ depcomp
45
+ install-sh
46
+ missing
47
+ src/.deps/
48
+ src/.libs
49
+ src/Makefile
50
+ src/Makefile.in
51
+ src/libsubfind.a
52
+ subspacefind*.tar.gz
53
+ src/subspacefind?la*
54
+ **/*.pyc
55
+ data/*
56
+ build/
57
+ doc
58
+ docs/build
59
+ meeting
60
+ #misc
61
+ /**/.DS_Store
62
+ /**/.ipynb_checkpoints
63
+ #app
64
+ dist
65
+ lib
66
+ python/.idea
67
+ test/.idea
68
+ venv
69
+ .venv
70
+ tmp
71
+ python/vaex/version.py # gets generated
72
+ **/*.egg-info/
73
+ .eggs/
74
+ bin/.idea
75
+ *.npy
76
+ __pycache__
77
+ .vscode
78
+
79
+ # output file from the docs
80
+ build/
81
+
82
+ ./tmp
83
+ ./examples
84
+ node_modules
85
+ packages/assets/cdn
86
+ packages/assets/dist/*
87
+
88
+ solara-env
89
+ states
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Maarten A. Breddels
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.3
2
+ Name: solara-server
3
+ Version: 1.31.0
4
+ Dynamic: Summary
5
+ Project-URL: Home, https://www.github.com/widgetti/solara
6
+ Project-URL: Documentation, https://solara.dev
7
+ Author-email: "Maarten A. Breddels" <maartenbreddels@gmail.com>
8
+ License: The MIT License (MIT)
9
+
10
+ Copyright (c) 2022 Maarten A. Breddels
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in
20
+ all copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28
+ THE SOFTWARE.
29
+ License-File: LICENSE
30
+ Classifier: License :: OSI Approved :: MIT License
31
+ Requires-Dist: click>=7.1.0
32
+ Requires-Dist: filelock
33
+ Requires-Dist: ipykernel
34
+ Requires-Dist: jinja2
35
+ Requires-Dist: jupyter-client>=7.0.0
36
+ Requires-Dist: nbformat
37
+ Requires-Dist: rich-click
38
+ Requires-Dist: solara-ui
39
+ Provides-Extra: all
40
+ Requires-Dist: solara-server[dev]; extra == 'all'
41
+ Requires-Dist: solara-server[flask]; extra == 'all'
42
+ Requires-Dist: solara-server[starlette]; extra == 'all'
43
+ Provides-Extra: dev
44
+ Requires-Dist: watchdog; extra == 'dev'
45
+ Requires-Dist: watchfiles; (python_version > '3.6') and extra == 'dev'
46
+ Provides-Extra: flask
47
+ Requires-Dist: flask; extra == 'flask'
48
+ Requires-Dist: flask-sock; extra == 'flask'
49
+ Provides-Extra: starlette
50
+ Requires-Dist: starlette; extra == 'starlette'
51
+ Requires-Dist: uvicorn; extra == 'starlette'
52
+ Requires-Dist: websockets; extra == 'starlette'
53
+ Description-Content-Type: text/markdown
54
+
55
+ The solara server enables running ipywidgets based applications without a real Jupyter kernel, allowing multiple "Virtual kernels" to share the same process for better performance and scalability.
56
+
57
+ See https://solara.dev/documentation/advanced/understanding/solara-server for more details.
58
+
59
+ ## Installation
60
+
61
+ ```bash
62
+ pip install solara-server[starlette,dev]
63
+ ```
64
+
65
+ ## Usage
66
+
67
+ ```bash
68
+ $ solara run myapp.py
69
+ ```
@@ -0,0 +1,15 @@
1
+ The solara server enables running ipywidgets based applications without a real Jupyter kernel, allowing multiple "Virtual kernels" to share the same process for better performance and scalability.
2
+
3
+ See https://solara.dev/documentation/advanced/understanding/solara-server for more details.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install solara-server[starlette,dev]
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ $ solara run myapp.py
15
+ ```
@@ -0,0 +1,56 @@
1
+ [build-system]
2
+ requires = ["hatchling==1.22.2"]
3
+ build-backend = "hatchling.build"
4
+
5
+
6
+ [project]
7
+ name = "solara-server"
8
+ readme = "README.md"
9
+ authors = [{name = "Maarten A. Breddels", email = "maartenbreddels@gmail.com"}]
10
+ license = {file = "LICENSE"}
11
+ classifiers = ["License :: OSI Approved :: MIT License"]
12
+ version = "1.31.0"
13
+ dynamic = ["description"]
14
+ dependencies = [
15
+ "solara-ui",
16
+ "jinja2",
17
+ "click>=7.1.0",
18
+ "rich_click",
19
+ "filelock",
20
+ "ipykernel",
21
+ "nbformat",
22
+ "jupyter_client>=7.0.0",
23
+ ]
24
+
25
+ [project.urls]
26
+ Home = "https://www.github.com/widgetti/solara"
27
+ Documentation = "https://solara.dev"
28
+
29
+ [project.optional-dependencies]
30
+ all = [
31
+ "solara-server[dev]",
32
+ "solara-server[starlette]",
33
+ "solara-server[flask]",
34
+ ]
35
+ dev = [
36
+ "watchfiles; python_version > '3.6'",
37
+ "watchdog",
38
+ ]
39
+ starlette = [
40
+ "uvicorn",
41
+ "websockets",
42
+ "starlette",
43
+ ]
44
+ flask = [
45
+ "flask",
46
+ "flask-sock",
47
+ ]
48
+
49
+ [project.scripts]
50
+ solara = "solara.__main__:main"
51
+
52
+ [tool.hatch.build.targets.wheel]
53
+ include = ["LICENSE"]
54
+
55
+ [tool.hatch.build.targets.sdist]
56
+ include = ["LICENSE"]