setta 0.0.5.dev3__py3-none-any.whl → 0.0.6.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/lsp/writer.py +9 -9
- setta/static/frontend/assets/{index-a780ff4e.js → index-105d4b9e.js} +2 -2
- setta/static/frontend/assets/index-a5bd0f52.css +32 -0
- setta/static/frontend/index.html +2 -2
- setta-0.0.6.dev0.dist-info/METADATA +176 -0
- {setta-0.0.5.dev3.dist-info → setta-0.0.6.dev0.dist-info}/RECORD +11 -11
- setta/static/frontend/assets/index-cc7772be.css +0 -32
- setta-0.0.5.dev3.dist-info/METADATA +0 -105
- {setta-0.0.5.dev3.dist-info → setta-0.0.6.dev0.dist-info}/LICENSE +0 -0
- {setta-0.0.5.dev3.dist-info → setta-0.0.6.dev0.dist-info}/WHEEL +0 -0
- {setta-0.0.5.dev3.dist-info → setta-0.0.6.dev0.dist-info}/entry_points.txt +0 -0
- {setta-0.0.5.dev3.dist-info → setta-0.0.6.dev0.dist-info}/top_level.txt +0 -0
@@ -1,105 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: setta
|
3
|
-
Version: 0.0.5.dev3
|
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.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|