setta 0.0.15.dev1__py3-none-any.whl → 0.0.17__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.
@@ -14,8 +14,8 @@
14
14
  <meta name="description" content="setta" />
15
15
 
16
16
  <title>setta.dev</title>
17
- <script type="module" crossorigin src="/static/assets/index-DodsVsiZ.js"></script>
18
- <link rel="stylesheet" crossorigin href="/static/assets/index-DG_u-B1j.css">
17
+ <script type="module" crossorigin src="/static/assets/index-D3_nMLig.js"></script>
18
+ <link rel="stylesheet" crossorigin href="/static/assets/index-D-mLvWDA.css">
19
19
  </head>
20
20
  <body>
21
21
  <noscript>You need to enable JavaScript to run this app.</noscript>
setta/tasks/tasks.py CHANGED
@@ -91,7 +91,6 @@ class Tasks:
91
91
  if call_fn_condition(
92
92
  call_all, call_fns_with_empty_dependency_array, fnInfo, message
93
93
  ):
94
- print('fnInfo["dependencies"]', fnInfo["dependencies"], flush=True)
95
94
  fns_to_call.append(fn_name)
96
95
 
97
96
  if fns_to_call:
@@ -143,22 +142,27 @@ class Tasks:
143
142
  ):
144
143
  # Process each function sequentially for this subprocess
145
144
  for fn_name in fn_names:
146
- # Send message to subprocess
147
- subprocess.parent_conn.send(
148
- {
149
- "type": call_type,
150
- "fn_name": fn_name,
151
- "message": message,
152
- "other_data": other_data,
153
- }
154
- )
145
+ try:
146
+ # Send message to subprocess
147
+ subprocess.parent_conn.send(
148
+ {
149
+ "type": call_type,
150
+ "fn_name": fn_name,
151
+ "message": message,
152
+ "other_data": other_data,
153
+ }
154
+ )
155
155
 
156
- # Wait for and handle the response before sending the next message
157
- start_time = time.perf_counter()
158
- result = await self.task_runner.run(
159
- subprocess.parent_conn.recv, [], RunType.THREAD
160
- )
161
- elapsed_time = time.perf_counter() - start_time
156
+ # Wait for and handle the response before sending the next message
157
+ start_time = time.perf_counter()
158
+ result = await self.task_runner.run(
159
+ subprocess.parent_conn.recv, [], RunType.THREAD
160
+ )
161
+ elapsed_time = time.perf_counter() - start_time
162
+ except Exception as e:
163
+ logger.debug("error while sending or receiving from subprocess")
164
+ results.append({"content": [e]})
165
+ continue
162
166
 
163
167
  if result["status"] == "success":
164
168
  self.update_average_subprocess_fn_time(
@@ -240,10 +244,18 @@ class Tasks:
240
244
 
241
245
  return initial_result["content"]
242
246
 
243
- def close(self):
247
+ def kill_in_memory_subprocesses(self):
244
248
  self.stop_event.set()
249
+ num_killed = 0
245
250
  for v in self.in_memory_subprocesses.values():
246
251
  v["subprocess"].close()
252
+ num_killed += 1
253
+ self.in_memory_subprocesses = {}
254
+ self.stop_event.clear()
255
+ return num_killed
256
+
257
+ def close(self):
258
+ self.kill_in_memory_subprocesses()
247
259
 
248
260
  def update_average_subprocess_fn_time(self, subprocess_key, fn_name, new_time):
249
261
  fnInfo = self.in_memory_subprocesses[subprocess_key]["fnInfo"][fn_name]
setta/utils/constants.py CHANGED
@@ -94,7 +94,7 @@ CODE_INFO_TABLE_DATA_JSON_FIELDS = set(
94
94
  "rcType",
95
95
  "defaultVal",
96
96
  "description",
97
- "positionalOnly",
97
+ "passingStyle",
98
98
  "isPinned",
99
99
  "isFrozen",
100
100
  "ignoreTypeErrors",
@@ -159,3 +159,11 @@ UI_TYPE_TABLE_DATA_JSON_FIELDS = set(
159
159
  PROJECT_CONFIG_TABLE_DATA_JSON_FIELDS = set(
160
160
  ["viewport", "previewImgColor", "viewingEditingMode"]
161
161
  )
162
+
163
+
164
+ class ParameterPassingStyle:
165
+ DEFAULT = "DEFAULT"
166
+ ARGS = "ARGS"
167
+ KWARGS = "KWARGS"
168
+ POSITIONAL_ONLY = "POSITIONAL_ONLY"
169
+ KEYWORD_ONLY = "KEYWORD_ONLY"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: setta
3
- Version: 0.0.15.dev1
3
+ Version: 0.0.17
4
4
  Summary: Python without the donkeywork.
5
5
  Home-page: https://setta.dev
6
6
  Author: Kevin Musgrave, Jeff Musgrave
@@ -42,28 +42,22 @@ Requires-Dist: flake8==6.1.0; extra == "dev"
42
42
 
43
43
  ## News
44
44
 
45
- **March 5**: [v0.0.14](https://github.com/settadev/setta/releases/tag/v0.0.14)
46
- - Allow access to individual layers of Drawing sections, as well as the combined output.
47
- - Added button + shortcut for sending current full project state to in-memory functions.
48
-
49
-
50
- **March 4**: [v0.0.13](https://github.com/settadev/setta/releases/tag/v0.0.13)
51
- - Updated frontend javascript dependencies.
45
+ **March 13**: [v0.0.17](https://github.com/settadev/setta/releases/tag/v0.0.17)
46
+ - Added the Notifications view.
52
47
 
48
+ <div align="center">
49
+ <img width="441" src="https://github.com/user-attachments/assets/568f82c7-4944-44c8-a7c5-20008f09f97e" />
50
+ </div>
53
51
 
54
- **March 3**: [v0.0.12](https://github.com/settadev/setta/releases/tag/v0.0.12)
55
- - Moved the zoom/map/view controls into the left side pane:
52
+ **March 10**: [v0.0.16](https://github.com/settadev/setta/releases/tag/v0.0.16)
53
+ - Made tooltips resizable and draggable.
54
+ - Added command palette.
55
+ - Improved code generation to account for different argument-passing styles.
56
56
 
57
- <table>
58
- <tr>
59
- <th width="50%">Before</th>
60
- <th width="50%">After</th>
61
- </tr>
62
- <tr>
63
- <td><img src="https://github.com/user-attachments/assets/2f7088fb-65ad-4744-b8d5-ea8c93c47962" /></td>
64
- <td><img src="https://github.com/user-attachments/assets/aca41d9c-00e0-4853-81a7-a709c50f24fd" /></td>
65
- </tr>
66
- </table>
57
+ **March 7**: [v0.0.15](https://github.com/settadev/setta/releases/tag/v0.0.15)
58
+ - Improved context menu organization.
59
+ - Added ability to change size of artifacts while preserving aspect ratio.
60
+ - Added Stop button for stopping subprocesses.
67
61
 
68
62
 
69
63
  ## What does Setta do?
@@ -92,12 +86,22 @@ Or click on one of the images below to go directly to that example:
92
86
  <tr>
93
87
  <td><a href="https://github.com/settadev/examples/tree/main/stream_diffusion_img_to_img"><img src="https://github.com/user-attachments/assets/2a063779-ed61-4103-90a5-bf127f3ea012" /></a></td>
94
88
  <td><a href="https://github.com/settadev/examples/tree/main/trl_language_model_finetuning"><img src="https://github.com/user-attachments/assets/96775341-4b6d-4d3c-8bc2-743eafce458a" /></a></td>
95
- <td><a href="https://github.com/settadev/examples/tree/main/groq_api_chat"><img src="https://github.com/user-attachments/assets/0d8ff9c1-2557-4549-a816-3c6693430d98" /></a></td>
89
+ <td><a href="https://github.com/settadev/examples/tree/main/bfl_flux_fill"><img src="https://github.com/user-attachments/assets/5c0ed2f1-cfa7-46aa-a5ce-6f5d93fa414b" /></a></td>
90
+
91
+
96
92
  </tr>
97
93
  <tr>
94
+ <td><a href="https://github.com/settadev/examples/tree/main/groq_api_chat"><img src="https://github.com/user-attachments/assets/0d8ff9c1-2557-4549-a816-3c6693430d98" /></a></td>
98
95
  <td><a href="https://github.com/settadev/examples/tree/main/transformers_trainer"><img src="https://github.com/user-attachments/assets/1f6554f8-8d49-4ba8-af48-f5dc6bc5d845" /></a></td>
99
96
  <td><a href="https://github.com/settadev/examples/tree/main/pytorch_metric_learning_trainer"><img src="https://github.com/user-attachments/assets/45ae2047-9dbd-4057-9191-9a3460357ccc" /></a></td>
100
97
  </tr>
98
+
99
+ <tr>
100
+ <td><a href="https://github.com/settadev/examples/tree/main/sapientml_automl"><img src="https://github.com/user-attachments/assets/d58e648a-47e2-4eda-b9e5-9062494518a4" /></a></td>
101
+ </tr>
102
+
103
+
104
+
101
105
  </table>
102
106
 
103
107
  We also have [tutorial videos](https://www.youtube.com/@settadev).
@@ -1,4 +1,4 @@
1
- setta/__init__.py,sha256=PPyGPEl5RHRcrbQDPQNFXA758s8ZEaqDN9JKrrazFDE,28
1
+ setta/__init__.py,sha256=Sd6j21A3v31CfSZ7ASugNxkOYAo0W0NUqcHuzfW7jJA,22
2
2
  setta/server.py,sha256=q4w9WG7SuLxwYtgXUCQyLt7t_HLmQV4y5abqvm7-uEA,4861
3
3
  setta/start.py,sha256=5sMZ7WH3KV9Q0v186PsaYqsWOz7hebyrpXbBOp9wQww,3589
4
4
  setta/cli/__init__.py,sha256=UxZG_VOMuF6lEBT3teUgTS9ulsK3wt3Gu3BbAQiAmt8,47
@@ -6,13 +6,13 @@ 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=5s31IXEMeXAuR_wWythZQtq_zH_-sd5e8xAhzAZfviM,28611
9
+ setta/code_gen/export_selected.py,sha256=LOFr8fC7ffwPTgAQbnq1EDxdz9mwIXYPhX_KuHbJl4k,28476
10
10
  setta/code_gen/find_placeholders.py,sha256=aTdSSGoh44J2YFZXH9eZJv0D5mvnIMfG2fHSHCn69Ws,575
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
13
13
  setta/code_gen/python/ast_utils.py,sha256=DaZ0D5M9xdkJLpNzFZiUxHYw-Oq2D_KSomPzPcH2LJ0,6697
14
14
  setta/code_gen/python/check_scope.py,sha256=L4-PcmAWjV5sWDzfLvfZiJ2vtvtIHma61T_1bzjlDmM,6048
15
- setta/code_gen/python/generate_code.py,sha256=Bibs4UuvRnr1yBDyAZOIQnJQopkQlW_6ASmGWeYOtK0,10777
15
+ setta/code_gen/python/generate_code.py,sha256=VrraBNBTfFVxr5rMRjBF6UOxbd2QP_V1uVdcEfnUcCs,11057
16
16
  setta/code_gen/python/make_parseable.py,sha256=K-8YKLz-05C9qEggrUpfNQ7ImARpXKSKvzoK7kYHBuM,2724
17
17
  setta/code_gen/python/position_line_col.py,sha256=LzLtnU0F40zcOnmCPA0Gc8ZseF0U84PVHK5skS3jy8U,1015
18
18
  setta/code_gen/python/validate_imports.py,sha256=qp7Z76NJAEEdoTTLOda1aO1x1E2T0gznl-iZnkeMgVU,3209
@@ -82,25 +82,25 @@ setta/lsp/reader_fns/definition.py,sha256=NDnRQGj-HrRCo0fMtEfbsQr2koWK-G45K2zoSf
82
82
  setta/lsp/reader_fns/diagnostics.py,sha256=A6QirnMSNvW6mmrJziajDx_IojpygdhwHFYBjst3Yo4,3630
83
83
  setta/lsp/reader_fns/documentHighlight.py,sha256=gPiUkR0rg6oC6u3rFW1Mh6h_U0NNpSlzVMLX69iPkJk,975
84
84
  setta/lsp/reader_fns/references.py,sha256=D12tSY3mzyHdsHOBDxjm6ykPGyRQeIb-vRB6qQRrNK4,1222
85
- setta/lsp/reader_fns/signatureHelp.py,sha256=s1BH5rlbdjk0CSieaWy8O5KetEa7tTcw6s931ccbutc,3055
85
+ setta/lsp/reader_fns/signatureHelp.py,sha256=uqe-n0jobXGD6k0I80wkPXQ42ecRAPyD5uDNJi0Gfxw,4475
86
86
  setta/routers/__init__.py,sha256=w6a-9i99LjqbEDKb6qujvWCzJqDW03XPQTmB4yq44ZM,587
87
87
  setta/routers/artifact.py,sha256=9wHdreg5DsLshhET-6gEDw2Apw_-r8bRF1x3-_dD9mU,2661
88
88
  setta/routers/code_info.py,sha256=rDBLkr5VQOlktap3hWA73ls0VrBi5y4mc_SfWzw9ad0,857
89
89
  setta/routers/dependencies.py,sha256=0pz1HuvhlJDIVopvkfRTgmLJhDPGw0g33uj2qXgpxQs,1228
90
90
  setta/routers/in_memory_fn_stdout_websocket.py,sha256=T2BpLzh6PwYQP0qIkFS4r_VfEKBlwl4gkwIaq6r6Phs,604
91
- setta/routers/interactive.py,sha256=TNXAupBXIuCn711olZPJemFB6WrBKWyy4inHbjNh9aw,5646
91
+ setta/routers/interactive.py,sha256=d1W1N1wcrQ3GIXekkSwWm_vmt-QLCSwAlhOOpagGwpE,7263
92
92
  setta/routers/lsp.py,sha256=DAZqdiRKDWJ9ikjwQetV4_8s9U-EDC91ToJA3u57qnU,385
93
- setta/routers/projects.py,sha256=p3zPD3jobYOxBGJSSIYS1Aqu1w-PrJCcEN6dPJ0DT6E,5255
93
+ setta/routers/projects.py,sha256=eq0SYA3yU9VCHKWRwOOXuUxAOYZ2WORhtL2fTPmT88E,6544
94
94
  setta/routers/reference_renaming.py,sha256=Ec1hz2Nz_hYqk8GyGmUcWKvXo-lVEDbIIK2YbX-wi00,3598
95
95
  setta/routers/sections.py,sha256=2CXHLFmOffP3GKMwGJIBoSPN4nC0YOaRCRPMG-R2u00,5517
96
- setta/routers/settings.py,sha256=1S7Epj4O7jElixjNaNlRplBGiYdkj9mFeNQeeOrtQw4,1032
96
+ setta/routers/settings.py,sha256=PuGa_g7fiS1STpfiLOHB9_auF_ZlzdaWAQ_rGlGQcho,1432
97
97
  setta/routers/terminals.py,sha256=91I3tVUPJtLyCD_-E_qBQ_k8uuNUrcXl5P7sCTQuDQE,2435
98
98
  setta/routers/websocket.py,sha256=6fSROv9C5PobPXppUWwNLDDO0p8VADYaf2KcgIuTQp4,1121
99
99
  setta/static/constants/BaseUITypes.json,sha256=WQUgvN4eq9uU6ifhDBhtyEIoQFsAC022DSEut-E-4bA,4057
100
- setta/static/constants/Settings.json,sha256=uE9PWakebkxUaLx-UyiplyTFTwVj2ogomgoalNnQSkw,3532
101
- setta/static/constants/constants.json,sha256=vzBINDWfx-4kbbz-2B8OASzykm9aCqr3yyD2yKoKzWU,5403
102
- setta/static/constants/db_init.sql,sha256=rdc0C5Hx_6d-QWEEbSqscArTyc77w9cMj8vbIVS8ZBw,8436
103
- setta/static/constants/defaultValues.json,sha256=Vh8WQZJYSc0QBu5WnNQO2dQtuYHZuy3WKfQEr9sBSqE,3063
100
+ setta/static/constants/Settings.json,sha256=BKHSPaoezfi5nYGsPp339u22jTX2UdaePlvMjK3Ovsc,3585
101
+ setta/static/constants/constants.json,sha256=Nkn-zaDN3GajSxpY9QJoHZgVFUSBWaaV1efWpy85Fi0,5769
102
+ setta/static/constants/db_init.sql,sha256=hqzfV566_7gHjMKigzTdAsjIsxP3gW2cf9vROXO2sus,8802
103
+ setta/static/constants/defaultValues.json,sha256=Xd-Rt2king2L87UpMNmm7twe7u7b0ihUqL7OvCiL-gE,3065
104
104
  setta/static/constants/settingsProject.json,sha256=3s2PQSBXqV9BYnibKY1xbLZfEYjL6JeLnPVEusfmz9c,14678
105
105
  setta/static/frontend/android-chrome-192x192.png,sha256=v4139zj56AAgR2JCm32ecRwaEu8RDiqnxfMb4VLW-KM,5575
106
106
  setta/static/frontend/android-chrome-512x512.png,sha256=A_4VOJ6FvQd9TM7MogJWxQ7svo0oXX9_81117lef7UQ,15222
@@ -109,7 +109,7 @@ setta/static/frontend/browserconfig.xml,sha256=w0iw1t89kA7-965LTfyLYrFzewTQnUWE_
109
109
  setta/static/frontend/favicon-16x16.png,sha256=q67Crpy8s3wryu7Y3kffPeysN99Lt4XeFygXhPKize8,740
110
110
  setta/static/frontend/favicon-32x32.png,sha256=4NKXYticYdMrRHmVveHjxqnBU1HWgBT5JyJG8lx3BNE,1027
111
111
  setta/static/frontend/favicon.ico,sha256=02qhEBLsvsgBTZX6dcZElMyivlvrR7Yr6wB8ItEZFsc,15086
112
- setta/static/frontend/index.html,sha256=Mb8qed9rOq2YfIa_rQ5rF6caSJXZYZC1z9C5RJb4fWA,1298
112
+ setta/static/frontend/index.html,sha256=E-VW4unWMF_23rO92Grq8cGUuzVlAdjuNf_d3ZOeg3Y,1298
113
113
  setta/static/frontend/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
114
114
  setta/static/frontend/mstile-144x144.png,sha256=wQqckmRWre2NCCevevI3rv4j0tcduVMkpYr2tPj73cs,2692
115
115
  setta/static/frontend/mstile-150x150.png,sha256=FUwy6PipTofnhmJB5CdXWYgwy-2inq_sIOdOwdDklcY,2674
@@ -184,8 +184,8 @@ setta/static/frontend/assets/cormorant-garamond-cyrillic-ext-700-italic-gsr366qd
184
184
  setta/static/frontend/assets/cormorant-garamond-latin-700-italic-BQbwEFjx.woff2,sha256=C8U-EgDBT8MpU4FpUNBJdybVpKvRhg_3WDpUDCw9XZg,20348
185
185
  setta/static/frontend/assets/cormorant-garamond-latin-ext-700-italic-DnnS5iSC.woff2,sha256=Ulc44CPXdUiI5dY86W76HLk7801Fm9_QywCV-8GRtFU,17240
186
186
  setta/static/frontend/assets/cormorant-garamond-vietnamese-700-italic-2_nTgjbG.woff2,sha256=mVYwN54qI0RLXqyrDGPUNpBHWSJDKjgUyBRWa2FJ_ao,5248
187
- setta/static/frontend/assets/index-DG_u-B1j.css,sha256=p4Gqww92nEx28I_kek53IZqFoHhzWcpbVL0O4oOP6R4,238489
188
- setta/static/frontend/assets/index-DodsVsiZ.js,sha256=ZODZXJ-CPAk4neKZgmGLdCtZ_nLqZKY0CpHUQaiJ0fM,3083095
187
+ setta/static/frontend/assets/index-D-mLvWDA.css,sha256=EyQa1p7Cv_J5cERo1Dt-OeSTLnVtmKEQS28rbdnUTFE,240163
188
+ setta/static/frontend/assets/index-D3_nMLig.js,sha256=3jJt1CsyorAmdlEU_rYcj8eINstclaC6FPBDObqftF0,3093422
189
189
  setta/static/frontend/assets/inter-all-400-normal-ByZ5TkcW.woff,sha256=BU8S0GmcIMyYte4ESEdQJO-WvL2Rb-38m1n0ujdbYxI,128624
190
190
  setta/static/frontend/assets/inter-all-600-normal-BQl_S1BW.woff,sha256=wDdp5VNyQL_IbxcPThD2qI-ETg_QKj7AmCwMCjqDfLE,139072
191
191
  setta/static/frontend/assets/inter-all-800-normal-BdAoPad8.woff,sha256=FdxuS9xuVumB5nbVcCXyt3IWqzS4Z75qiRz_0FV5al0,139120
@@ -230,7 +230,7 @@ setta/static/seed/.DS_Store,sha256=ENxJvDQd7Te_U8gExcXtHE-mAeBUYOHELRfDWgN1NmA,6
230
230
  setta/static/seed/examples/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
231
231
  setta/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
232
  setta/tasks/task_runner.py,sha256=gMXpfZWFMQbix2MfrHVCKB7BxQCjO8JH2P8cxUmt1ms,849
233
- setta/tasks/tasks.py,sha256=dME1fs6uQ6MMEgQOwmMWNgPNW0lQiNmyceC3VPZBkcU,11530
233
+ setta/tasks/tasks.py,sha256=yaGUVhKoEDq1PvAY_bHRnyepkIC6oZjk4kzTygP0J-Y,11946
234
234
  setta/tasks/utils.py,sha256=iqbsLYBcu4Qd-MAHd0SWK9wPaJezgEh1Yg5YC9goOLU,10631
235
235
  setta/tasks/fns/__init__.py,sha256=JhGzzQGaT9BWtF3pOmguh6pzIF9kdG3jdDNLyYZ2w7g,461
236
236
  setta/tasks/fns/codeAreaAutocomplete.py,sha256=gJ5JbjkWDyTothr-UF-YlOxrbVzj2iyOVK7XD3lfhSQ,6416
@@ -246,15 +246,15 @@ setta/terminals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
246
  setta/terminals/terminals.py,sha256=p16VrSXKjD6l5o902RR95Yffg9q-MfKfsezXPXTIJUE,9116
247
247
  setta/terminals/utils.py,sha256=Yh_AsBE4h2rWqgHvg2UNlZnhE6yAIFAN6DnfnJvEIZ8,1281
248
248
  setta/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
- setta/utils/constants.py,sha256=_3r3xNG5oz9G_qK6322sAbr2HpGh-_c_6oodpuHwfbo,3863
249
+ setta/utils/constants.py,sha256=rTBPKhw-iUqCzxVWhMSoZp22ePF7_MtoaFP8kSYi_YQ,4030
250
250
  setta/utils/generate_memorable_string.py,sha256=ZIn8gQm3cpMuqTCRgAPXAm5VdbWW7O3fUVLmoQVuzLY,7713
251
251
  setta/utils/generate_new_filename.py,sha256=KBLX6paDmTvXR-027TpqQkfijIXc7mCfhen-u1WZARA,3067
252
252
  setta/utils/section_contents.py,sha256=V2HQPik6DfSXw4j7IalbP5AZ3OEGCbtL5ub3xL-Q_Qo,4141
253
253
  setta/utils/utils.py,sha256=KjzcvgM3Ab3IcE8vaWYtgBpwzPLKg0LmblnHLoYZJHM,9164
254
254
  setta/utils/websocket_manager.py,sha256=MBIMI8xxOFQF4lT3on4pupi1ttEWXdWPV4fI2YP_UJU,3925
255
- setta-0.0.15.dev1.dist-info/LICENSE,sha256=us9fuCq9wmiZVzayjKxNZ2iJYF6dROe0Qp57ToCO7XU,11361
256
- setta-0.0.15.dev1.dist-info/METADATA,sha256=ZfIcUxJDTl16yCJif1lfxqUBhXi0IMwRy3_BrJpocRw,7202
257
- setta-0.0.15.dev1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
258
- setta-0.0.15.dev1.dist-info/entry_points.txt,sha256=P0qCESy9fWF2q1EQ9JufGldCSnPHplDPn8J6Bgk5hB0,42
259
- setta-0.0.15.dev1.dist-info/top_level.txt,sha256=8G4lmRzVOnJ11_DescPVHE6MQZH-o06A0nGsDDV2ngY,6
260
- setta-0.0.15.dev1.dist-info/RECORD,,
255
+ setta-0.0.17.dist-info/LICENSE,sha256=us9fuCq9wmiZVzayjKxNZ2iJYF6dROe0Qp57ToCO7XU,11361
256
+ setta-0.0.17.dist-info/METADATA,sha256=0ihn8fACjT465UJrJnUpnPj994Onw80OywNhkUi1jYg,7460
257
+ setta-0.0.17.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
258
+ setta-0.0.17.dist-info/entry_points.txt,sha256=P0qCESy9fWF2q1EQ9JufGldCSnPHplDPn8J6Bgk5hB0,42
259
+ setta-0.0.17.dist-info/top_level.txt,sha256=8G4lmRzVOnJ11_DescPVHE6MQZH-o06A0nGsDDV2ngY,6
260
+ setta-0.0.17.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.2)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5