setta 0.0.2__py3-none-any.whl → 0.0.3__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- setta/__init__.py +1 -1
- setta/cli/__init__.py +1 -1
- setta/cli/logger.py +1 -3
- setta/code_gen/create_runnable_scripts.py +87 -34
- setta/code_gen/export_selected.py +1 -5
- setta/code_gen/find_placeholders.py +13 -2
- setta/database/backup.py +1 -2
- setta/database/db/artifacts/save.py +20 -4
- setta/database/db/projects/save.py +1 -1
- setta/database/db/sections/load.py +5 -2
- setta/database/db/sections/save.py +2 -2
- setta/database/db_objs.py +6 -0
- setta/database/export_db/export_raw.py +3 -3
- setta/database/export_db/utils.py +2 -3
- setta/database/settings_file.py +3 -3
- setta/lsp/file_watcher.py +24 -23
- setta/lsp/server.py +1 -1
- setta/lsp/writer.py +2 -2
- setta/routers/interactive.py +38 -20
- setta/server.py +3 -4
- setta/start.py +4 -3
- setta/static/constants/constants.json +4 -0
- setta/static/constants/db_init.sql +2 -1
- setta/static/constants/defaultValues.json +2 -1
- setta/static/constants/settingsProject.json +31 -31
- setta/static/frontend/assets/index-03be034e.css +32 -0
- setta/static/frontend/assets/{index-ee99dc72.js → index-59443547.js} +171 -171
- setta/static/frontend/index.html +2 -2
- setta/tasks/tasks.py +166 -98
- setta/tasks/utils.py +108 -21
- setta/terminals/terminals.py +7 -6
- setta/utils/constants.py +5 -2
- setta/utils/websocket_manager.py +8 -3
- setta-0.0.3.dist-info/METADATA +146 -0
- {setta-0.0.2.dist-info → setta-0.0.3.dist-info}/RECORD +39 -40
- setta/database/db_path.py +0 -8
- setta/static/frontend/assets/index-1d4b4ecf.css +0 -32
- setta-0.0.2.dist-info/METADATA +0 -24
- {setta-0.0.2.dist-info → setta-0.0.3.dist-info}/LICENSE +0 -0
- {setta-0.0.2.dist-info → setta-0.0.3.dist-info}/WHEEL +0 -0
- {setta-0.0.2.dist-info → setta-0.0.3.dist-info}/entry_points.txt +0 -0
- {setta-0.0.2.dist-info → setta-0.0.3.dist-info}/top_level.txt +0 -0
setta-0.0.2.dist-info/METADATA
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: setta
|
3
|
-
Version: 0.0.2
|
4
|
-
Home-page: https://setta.dev
|
5
|
-
Project-URL: GitHub, https://github.com/settadev/setta
|
6
|
-
License-File: LICENSE
|
7
|
-
Requires-Dist: click==8.1.3
|
8
|
-
Requires-Dist: requests==2.28.1
|
9
|
-
Requires-Dist: PyYAML==6.0
|
10
|
-
Requires-Dist: websockets==11.0.3
|
11
|
-
Requires-Dist: fastapi==0.115.4
|
12
|
-
Requires-Dist: uvicorn==0.32.0
|
13
|
-
Requires-Dist: docstring_parser==0.15
|
14
|
-
Requires-Dist: pywinpty==2.0.12; platform_system == "Windows"
|
15
|
-
Requires-Dist: ptyprocess==0.7.0; platform_system != "Windows"
|
16
|
-
Requires-Dist: psutil==5.9.7
|
17
|
-
Requires-Dist: basedpyright==1.25.0
|
18
|
-
Requires-Dist: docstring-to-markdown==0.15
|
19
|
-
Requires-Dist: black==23.7.0
|
20
|
-
Requires-Dist: watchdog==6.0.0
|
21
|
-
Provides-Extra: dev
|
22
|
-
Requires-Dist: build==1.0.3; extra == "dev"
|
23
|
-
Requires-Dist: isort==5.12.0; extra == "dev"
|
24
|
-
Requires-Dist: flake8==6.1.0; extra == "dev"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|