setta 0.0.4.dev1__py3-none-any.whl → 0.0.5.dev0__py3-none-any.whl
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.
- setta/__init__.py +1 -1
- setta/code_gen/export_selected.py +14 -11
- setta/static/constants/Settings.json +1 -1
- setta/static/frontend/assets/index-22cb3bcb.css +32 -0
- setta/static/frontend/assets/{index-4b75851d.js → index-d8df181b.js} +73 -73
- setta/static/frontend/index.html +2 -2
- setta-0.0.5.dev0.dist-info/METADATA +105 -0
- {setta-0.0.4.dev1.dist-info → setta-0.0.5.dev0.dist-info}/RECORD +12 -12
- setta/static/frontend/assets/index-03be034e.css +0 -32
- setta-0.0.4.dev1.dist-info/METADATA +0 -146
- {setta-0.0.4.dev1.dist-info → setta-0.0.5.dev0.dist-info}/LICENSE +0 -0
- {setta-0.0.4.dev1.dist-info → setta-0.0.5.dev0.dist-info}/WHEEL +0 -0
- {setta-0.0.4.dev1.dist-info → setta-0.0.5.dev0.dist-info}/entry_points.txt +0 -0
- {setta-0.0.4.dev1.dist-info → setta-0.0.5.dev0.dist-info}/top_level.txt +0 -0
setta/static/frontend/index.html
CHANGED
@@ -15,8 +15,8 @@
|
|
15
15
|
|
16
16
|
|
17
17
|
<title>setta.dev</title>
|
18
|
-
<script type="module" crossorigin src="/static/assets/index-
|
19
|
-
<link rel="stylesheet" href="/static/assets/index-
|
18
|
+
<script type="module" crossorigin src="/static/assets/index-d8df181b.js"></script>
|
19
|
+
<link rel="stylesheet" href="/static/assets/index-22cb3bcb.css">
|
20
20
|
</head>
|
21
21
|
<body>
|
22
22
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
@@ -0,0 +1,105 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: setta
|
3
|
+
Version: 0.0.5.dev0
|
4
|
+
Summary: Python without the donkeywork.
|
5
|
+
Home-page: https://setta.dev
|
6
|
+
Author: Kevin Musgrave, Jeff Musgrave
|
7
|
+
License: Apache-2.0
|
8
|
+
Project-URL: GitHub, https://github.com/settadev/setta
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
License-File: LICENSE
|
11
|
+
Requires-Dist: click>=8.1.8
|
12
|
+
Requires-Dist: requests>=2.32.3
|
13
|
+
Requires-Dist: PyYAML>=6.0.2
|
14
|
+
Requires-Dist: websockets>=15.0
|
15
|
+
Requires-Dist: fastapi>=0.115.8
|
16
|
+
Requires-Dist: uvicorn>=0.34.0
|
17
|
+
Requires-Dist: docstring_parser>=0.16
|
18
|
+
Requires-Dist: pywinpty>=2.0.15; platform_system == "Windows"
|
19
|
+
Requires-Dist: ptyprocess>=0.7.0; platform_system != "Windows"
|
20
|
+
Requires-Dist: psutil>=7.0.0
|
21
|
+
Requires-Dist: basedpyright>=1.27.1
|
22
|
+
Requires-Dist: docstring-to-markdown>=0.15
|
23
|
+
Requires-Dist: black>=23.7.0
|
24
|
+
Requires-Dist: watchdog>=6.0.0
|
25
|
+
Provides-Extra: dev
|
26
|
+
Requires-Dist: black==23.7.0; extra == "dev"
|
27
|
+
Requires-Dist: build==1.0.3; extra == "dev"
|
28
|
+
Requires-Dist: isort==5.12.0; extra == "dev"
|
29
|
+
Requires-Dist: flake8==6.1.0; extra == "dev"
|
30
|
+
|
31
|
+

|
32
|
+

|
33
|
+
|
34
|
+
|
35
|
+
<div align="center">
|
36
|
+
|
37
|
+
[](https://pypi.org/project/setta)
|
38
|
+
[](https://github.com/settadev/setta/blob/main/LICENSE)
|
39
|
+
[](https://discord.gg/MmHJz75bZ5)
|
40
|
+
|
41
|
+
</div>
|
42
|
+
|
43
|
+
## News
|
44
|
+
|
45
|
+
**February 20**: v0.0.4
|
46
|
+
- Allow subprocess start method to be specified (fork, spawn, forkserver)
|
47
|
+
- When doing a param sweep of in-memory functions, import them in parallel.
|
48
|
+
- Various style improvements
|
49
|
+
|
50
|
+
**February 18**: v0.0.3
|
51
|
+
- Big improvements to charts and in-memory functions
|
52
|
+
|
53
|
+
**February 2**: v0.0.2
|
54
|
+
- First release!
|
55
|
+
|
56
|
+
|
57
|
+
## What does Setta do?
|
58
|
+
|
59
|
+
Setta is a developer tool that streamlines Python coding, configuration, UI creation, and onboarding.
|
60
|
+
|
61
|
+
It enables you to:
|
62
|
+
- Skip the boilerplate parsers and frontend.
|
63
|
+
- Effortlessly expose your Python functions as a flexible UI.
|
64
|
+
- Configure, interact, and share with ease.
|
65
|
+
|
66
|
+
Here's a short intro video:
|
67
|
+
|
68
|
+
https://github.com/user-attachments/assets/0599b754-1fbc-470b-ad6f-ac44b01da761
|
69
|
+
|
70
|
+
## Getting started
|
71
|
+
|
72
|
+
Run this command in your terminal:
|
73
|
+
|
74
|
+
```
|
75
|
+
pip install setta
|
76
|
+
```
|
77
|
+
|
78
|
+
Then go to your project folder and enter:
|
79
|
+
|
80
|
+
```
|
81
|
+
setta
|
82
|
+
```
|
83
|
+
|
84
|
+
The Setta UI will now be available in your web browser at http://127.0.0.1:8000/.
|
85
|
+
|
86
|
+
|
87
|
+
## Documentation
|
88
|
+
|
89
|
+
Documentation is in progress: https://docs.setta.dev/
|
90
|
+
|
91
|
+
## Examples
|
92
|
+
|
93
|
+
Our examples are easy to run: https://github.com/settadev/examples
|
94
|
+
|
95
|
+
The current examples are focused on AI, like LLM training and image generation. We'll soon be adding examples for other domains too.
|
96
|
+
|
97
|
+
## Features
|
98
|
+
|
99
|
+
See our [Features](FEATURES.md) document for an overview of what Setta can do.
|
100
|
+
|
101
|
+
|
102
|
+
## Contributors
|
103
|
+
|
104
|
+
- [Kevin Musgrave](https://github.com/KevinMusgrave): co-creator & full-stack developer.
|
105
|
+
- [Jeff Musgrave](https://github.com/JeffMusgrave): co-creator, UI/UX developer, frontend developer, and designer.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
setta/__init__.py,sha256=
|
1
|
+
setta/__init__.py,sha256=F9RogY4vbY8N1ESj6t6jidj8TodE2XhBaeIRTJfQOv8,27
|
2
2
|
setta/server.py,sha256=P78BMFvcCokVhjnVlNIKcmpCSvmzSqt-33bx4bhOe6Y,4626
|
3
3
|
setta/start.py,sha256=jEeSiocLeBitvg48fa6k1CpLnPI63JHkQ8O-WVM6ch8,3078
|
4
4
|
setta/cli/__init__.py,sha256=UxZG_VOMuF6lEBT3teUgTS9ulsK3wt3Gu3BbAQiAmt8,47
|
@@ -6,7 +6,7 @@ setta/cli/connect.py,sha256=Pj2Ten7CQcLQGNnyi5Y-vYslQDN3J8csPcWetlvu_J0,1273
|
|
6
6
|
setta/cli/logger.py,sha256=M-gGOcYt8Xj7ldNGBAUfA9yL1nX4UpBuQR1lkg_qiSs,6130
|
7
7
|
setta/code_gen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
setta/code_gen/create_runnable_scripts.py,sha256=LXRu8ErO3_e5HCNomnlgfsyxKp2h-Pmm2VFXzBgDDhA,17444
|
9
|
-
setta/code_gen/export_selected.py,sha256=
|
9
|
+
setta/code_gen/export_selected.py,sha256=OD7kyM9dYXQek42ZJwfP5KQpX7hbPeTZ5c0H6KVf8zQ,27010
|
10
10
|
setta/code_gen/find_placeholders.py,sha256=xWEVVPmyeEhPwoMsCnmMkd-ox3rd50jRur3uxfCqB30,601
|
11
11
|
setta/code_gen/utils.py,sha256=ArBPYA__ekeHjZVUDXanlMEnqCX5-Z_R1rMM-1UbEV0,4088
|
12
12
|
setta/code_gen/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -96,7 +96,7 @@ setta/routers/settings.py,sha256=1S7Epj4O7jElixjNaNlRplBGiYdkj9mFeNQeeOrtQw4,103
|
|
96
96
|
setta/routers/terminals.py,sha256=91I3tVUPJtLyCD_-E_qBQ_k8uuNUrcXl5P7sCTQuDQE,2435
|
97
97
|
setta/routers/websocket.py,sha256=6fSROv9C5PobPXppUWwNLDDO0p8VADYaf2KcgIuTQp4,1121
|
98
98
|
setta/static/constants/BaseUITypes.json,sha256=S08qzaNwjclRKuC9U3J0_PpmDTw5aQFwKQcUb0SiiR4,3873
|
99
|
-
setta/static/constants/Settings.json,sha256
|
99
|
+
setta/static/constants/Settings.json,sha256=ZOd91Gp-liTIdslx6NtsPJp0GrWY5xZNfLv4_HHmU5w,3444
|
100
100
|
setta/static/constants/constants.json,sha256=ICVe1HiGoUlSyiuNptfLX7rimHJk_7SfN38MWJEL62c,5151
|
101
101
|
setta/static/constants/db_init.sql,sha256=rdc0C5Hx_6d-QWEEbSqscArTyc77w9cMj8vbIVS8ZBw,8436
|
102
102
|
setta/static/constants/defaultValues.json,sha256=8d_PNUsTgWOZdSV5x4xESQjtXE4ZnJX2kN8E0vYkk6I,2985
|
@@ -108,7 +108,7 @@ setta/static/frontend/browserconfig.xml,sha256=w0iw1t89kA7-965LTfyLYrFzewTQnUWE_
|
|
108
108
|
setta/static/frontend/favicon-16x16.png,sha256=q67Crpy8s3wryu7Y3kffPeysN99Lt4XeFygXhPKize8,740
|
109
109
|
setta/static/frontend/favicon-32x32.png,sha256=4NKXYticYdMrRHmVveHjxqnBU1HWgBT5JyJG8lx3BNE,1027
|
110
110
|
setta/static/frontend/favicon.ico,sha256=02qhEBLsvsgBTZX6dcZElMyivlvrR7Yr6wB8ItEZFsc,15086
|
111
|
-
setta/static/frontend/index.html,sha256=
|
111
|
+
setta/static/frontend/index.html,sha256=sXXj7HyVWOrWSgD1gkd5flC5zXOW84yv2ZrEVyK1DI4,1296
|
112
112
|
setta/static/frontend/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
|
113
113
|
setta/static/frontend/mstile-144x144.png,sha256=wQqckmRWre2NCCevevI3rv4j0tcduVMkpYr2tPj73cs,2692
|
114
114
|
setta/static/frontend/mstile-150x150.png,sha256=FUwy6PipTofnhmJB5CdXWYgwy-2inq_sIOdOwdDklcY,2674
|
@@ -184,8 +184,8 @@ setta/static/frontend/assets/cormorant-garamond-latin-700-italic-0bc53e12.woff2,
|
|
184
184
|
setta/static/frontend/assets/cormorant-garamond-latin-ext-700-italic-525738e0.woff2,sha256=Ulc44CPXdUiI5dY86W76HLk7801Fm9_QywCV-8GRtFU,17240
|
185
185
|
setta/static/frontend/assets/cormorant-garamond-vietnamese-700-italic-99563037.woff2,sha256=mVYwN54qI0RLXqyrDGPUNpBHWSJDKjgUyBRWa2FJ_ao,5248
|
186
186
|
setta/static/frontend/assets/erase-5e0448ea.svg,sha256=XgRI6pChr392LJ-pGbwqqkN8OWcJMEtRGX-Gv-90qjw,872
|
187
|
-
setta/static/frontend/assets/index-
|
188
|
-
setta/static/frontend/assets/index-
|
187
|
+
setta/static/frontend/assets/index-22cb3bcb.css,sha256=Iss7y0Z8dEkFEVd53CSg6oi6L6qaEd_nabgvm8QjZN0,233704
|
188
|
+
setta/static/frontend/assets/index-d8df181b.js,sha256=qz7ItfWzaQidcpSo2wYsIDLIUk9u8NtHO4yW6wh-7v4,2849552
|
189
189
|
setta/static/frontend/assets/inter-all-400-normal-054f12d0.woff,sha256=BU8S0GmcIMyYte4ESEdQJO-WvL2Rb-38m1n0ujdbYxI,128624
|
190
190
|
setta/static/frontend/assets/inter-all-600-normal-c03769e5.woff,sha256=wDdp5VNyQL_IbxcPThD2qI-ETg_QKj7AmCwMCjqDfLE,139072
|
191
191
|
setta/static/frontend/assets/inter-all-800-normal-15dc6e4b.woff,sha256=FdxuS9xuVumB5nbVcCXyt3IWqzS4Z75qiRz_0FV5al0,139120
|
@@ -254,9 +254,9 @@ setta/utils/generate_new_filename.py,sha256=KBLX6paDmTvXR-027TpqQkfijIXc7mCfhen-
|
|
254
254
|
setta/utils/section_contents.py,sha256=V2HQPik6DfSXw4j7IalbP5AZ3OEGCbtL5ub3xL-Q_Qo,4141
|
255
255
|
setta/utils/utils.py,sha256=KjzcvgM3Ab3IcE8vaWYtgBpwzPLKg0LmblnHLoYZJHM,9164
|
256
256
|
setta/utils/websocket_manager.py,sha256=S2lEGZsc2OhW0yKLW9VEcH7wi7ppzTfDMQa_hxf3ovc,3772
|
257
|
-
setta-0.0.
|
258
|
-
setta-0.0.
|
259
|
-
setta-0.0.
|
260
|
-
setta-0.0.
|
261
|
-
setta-0.0.
|
262
|
-
setta-0.0.
|
257
|
+
setta-0.0.5.dev0.dist-info/LICENSE,sha256=us9fuCq9wmiZVzayjKxNZ2iJYF6dROe0Qp57ToCO7XU,11361
|
258
|
+
setta-0.0.5.dev0.dist-info/METADATA,sha256=IODikjp7x7JbVO0fukahSHMCbj1Wxxh0BS4vnZGmDD8,3096
|
259
|
+
setta-0.0.5.dev0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
260
|
+
setta-0.0.5.dev0.dist-info/entry_points.txt,sha256=P0qCESy9fWF2q1EQ9JufGldCSnPHplDPn8J6Bgk5hB0,42
|
261
|
+
setta-0.0.5.dev0.dist-info/top_level.txt,sha256=8G4lmRzVOnJ11_DescPVHE6MQZH-o06A0nGsDDV2ngY,6
|
262
|
+
setta-0.0.5.dev0.dist-info/RECORD,,
|