factorysemantics-mes 0.1.0__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.
Files changed (220) hide show
  1. factorysemantics_mes-0.1.0.dist-info/METADATA +372 -0
  2. factorysemantics_mes-0.1.0.dist-info/RECORD +220 -0
  3. factorysemantics_mes-0.1.0.dist-info/WHEEL +4 -0
  4. factorysemantics_mes-0.1.0.dist-info/entry_points.txt +5 -0
  5. factorysemantics_mes-0.1.0.dist-info/licenses/LICENSE +201 -0
  6. factorysemantics_mes-0.1.0.dist-info/licenses/NOTICE +35 -0
  7. fsmes/__init__.py +11 -0
  8. fsmes/api/__init__.py +0 -0
  9. fsmes/api/app.py +344 -0
  10. fsmes/api/deps.py +119 -0
  11. fsmes/api/idempotency.py +77 -0
  12. fsmes/api/paging.py +59 -0
  13. fsmes/api/routers/__init__.py +0 -0
  14. fsmes/api/routers/adjustments.py +66 -0
  15. fsmes/api/routers/admin.py +176 -0
  16. fsmes/api/routers/analysis.py +78 -0
  17. fsmes/api/routers/assist.py +255 -0
  18. fsmes/api/routers/auth.py +86 -0
  19. fsmes/api/routers/coa.py +68 -0
  20. fsmes/api/routers/dashboard.py +213 -0
  21. fsmes/api/routers/design.py +130 -0
  22. fsmes/api/routers/documents.py +138 -0
  23. fsmes/api/routers/equipment.py +94 -0
  24. fsmes/api/routers/erp.py +26 -0
  25. fsmes/api/routers/execution.py +140 -0
  26. fsmes/api/routers/kpis.py +37 -0
  27. fsmes/api/routers/line.py +48 -0
  28. fsmes/api/routers/maintenance.py +146 -0
  29. fsmes/api/routers/masterdata.py +214 -0
  30. fsmes/api/routers/ops.py +191 -0
  31. fsmes/api/routers/quality.py +270 -0
  32. fsmes/api/routers/scheduling.py +92 -0
  33. fsmes/api/routers/serialization.py +123 -0
  34. fsmes/api/routers/system.py +75 -0
  35. fsmes/api/routers/triggers.py +96 -0
  36. fsmes/api/routers/workorders.py +240 -0
  37. fsmes/cli.py +1152 -0
  38. fsmes/config.py +109 -0
  39. fsmes/core/__init__.py +6 -0
  40. fsmes/core/oplock.py +67 -0
  41. fsmes/db.py +66 -0
  42. fsmes/demo_feed.py +94 -0
  43. fsmes/domain/__init__.py +117 -0
  44. fsmes/domain/adjustments.py +60 -0
  45. fsmes/domain/audit.py +32 -0
  46. fsmes/domain/calendar.py +75 -0
  47. fsmes/domain/common.py +15 -0
  48. fsmes/domain/documents.py +106 -0
  49. fsmes/domain/equipment.py +44 -0
  50. fsmes/domain/execution.py +77 -0
  51. fsmes/domain/gauges.py +73 -0
  52. fsmes/domain/idempotency.py +31 -0
  53. fsmes/domain/integration.py +54 -0
  54. fsmes/domain/maintenance.py +106 -0
  55. fsmes/domain/masterdata.py +198 -0
  56. fsmes/domain/quality.py +70 -0
  57. fsmes/domain/scheduling.py +67 -0
  58. fsmes/domain/serialization.py +133 -0
  59. fsmes/domain/timeseries.py +28 -0
  60. fsmes/domain/triggers.py +85 -0
  61. fsmes/domain/workorders.py +100 -0
  62. fsmes/integrations/__init__.py +0 -0
  63. fsmes/integrations/erp/__init__.py +0 -0
  64. fsmes/integrations/erp/b2mml.py +97 -0
  65. fsmes/integrations/erp/base.py +51 -0
  66. fsmes/integrations/erp/contract.py +122 -0
  67. fsmes/integrations/erp/erpnext_adapter.py +282 -0
  68. fsmes/integrations/erp/file_adapter.py +56 -0
  69. fsmes/integrations/erp/mock_erp.py +69 -0
  70. fsmes/integrations/erp/rest_adapter.py +22 -0
  71. fsmes/integrations/erp/sync.py +62 -0
  72. fsmes/integrations/opc/__init__.py +0 -0
  73. fsmes/integrations/opc/agent.py +859 -0
  74. fsmes/integrations/opc/csv_replay.py +521 -0
  75. fsmes/integrations/opc/inspect.py +192 -0
  76. fsmes/integrations/opc/security.py +126 -0
  77. fsmes/integrations/opc/simulator.py +101 -0
  78. fsmes/integrations/opc/tag_map.py +198 -0
  79. fsmes/integrations/opc/worksheet.py +171 -0
  80. fsmes/kernel/__init__.py +11 -0
  81. fsmes/kernel/common.py +27 -0
  82. fsmes/kernel/tags.py +56 -0
  83. fsmes/logging.py +72 -0
  84. fsmes/mcp/__init__.py +7 -0
  85. fsmes/mcp/adjustments.py +46 -0
  86. fsmes/mcp/coa.py +52 -0
  87. fsmes/mcp/equipment.py +73 -0
  88. fsmes/mcp/erp.py +30 -0
  89. fsmes/mcp/maintenance.py +96 -0
  90. fsmes/mcp/masterdata.py +112 -0
  91. fsmes/mcp/quality.py +84 -0
  92. fsmes/mcp/scheduling.py +76 -0
  93. fsmes/mcp/serialization.py +92 -0
  94. fsmes/mcp/triggers.py +60 -0
  95. fsmes/mcp_server.py +628 -0
  96. fsmes/plant.py +557 -0
  97. fsmes/py.typed +0 -0
  98. fsmes/seed.py +84 -0
  99. fsmes/seed_kepsim.py +184 -0
  100. fsmes/seed_line.py +116 -0
  101. fsmes/services/__init__.py +22 -0
  102. fsmes/services/adjustments.py +205 -0
  103. fsmes/services/agent.py +537 -0
  104. fsmes/services/ai_status.py +292 -0
  105. fsmes/services/analysis.py +515 -0
  106. fsmes/services/assistant.py +838 -0
  107. fsmes/services/audit.py +30 -0
  108. fsmes/services/auth.py +196 -0
  109. fsmes/services/calendar.py +204 -0
  110. fsmes/services/capabilities.py +116 -0
  111. fsmes/services/coa.py +419 -0
  112. fsmes/services/design.py +342 -0
  113. fsmes/services/design_triage.py +234 -0
  114. fsmes/services/documents.py +245 -0
  115. fsmes/services/drafting.py +144 -0
  116. fsmes/services/equipment.py +236 -0
  117. fsmes/services/erp.py +224 -0
  118. fsmes/services/execution.py +302 -0
  119. fsmes/services/gauges.py +185 -0
  120. fsmes/services/line.py +364 -0
  121. fsmes/services/maintenance.py +292 -0
  122. fsmes/services/masterdata.py +281 -0
  123. fsmes/services/quality.py +137 -0
  124. fsmes/services/retention.py +71 -0
  125. fsmes/services/scheduling.py +275 -0
  126. fsmes/services/serialization.py +745 -0
  127. fsmes/services/spc.py +217 -0
  128. fsmes/services/staging.py +108 -0
  129. fsmes/services/tags.py +401 -0
  130. fsmes/services/triggers.py +323 -0
  131. fsmes/services/walkthroughs.py +128 -0
  132. fsmes/services/workorders.py +279 -0
  133. fsmes/sim/__init__.py +17 -0
  134. fsmes/sim/agent_eval.py +264 -0
  135. fsmes/sim/autoloop.py +344 -0
  136. fsmes/sim/generate.py +715 -0
  137. fsmes/sim/mcp_server.py +440 -0
  138. fsmes/sim/operations.py +330 -0
  139. fsmes/sim/rollup.py +256 -0
  140. fsmes/sim/runner.py +481 -0
  141. fsmes/sim/score.py +252 -0
  142. fsmes/sim/store.py +194 -0
  143. fsmes/sim/sweep.py +140 -0
  144. fsmes/sim/triage.py +147 -0
  145. fsmes/sim/truth.py +131 -0
  146. fsmes/sim/ui_check.py +355 -0
  147. fsmes/web/adjustments.html +90 -0
  148. fsmes/web/adjustments.js +143 -0
  149. fsmes/web/admin.css +55 -0
  150. fsmes/web/admin.html +124 -0
  151. fsmes/web/admin.js +373 -0
  152. fsmes/web/analysis.css +140 -0
  153. fsmes/web/analysis.html +113 -0
  154. fsmes/web/analysis.js +268 -0
  155. fsmes/web/app.js +556 -0
  156. fsmes/web/assist-record.js +552 -0
  157. fsmes/web/assist.css +238 -0
  158. fsmes/web/assist.js +694 -0
  159. fsmes/web/coa.css +19 -0
  160. fsmes/web/coa.html +76 -0
  161. fsmes/web/coa.js +117 -0
  162. fsmes/web/common.js +390 -0
  163. fsmes/web/demo/kepsim-hour.json +1 -0
  164. fsmes/web/design.css +60 -0
  165. fsmes/web/design.js +215 -0
  166. fsmes/web/gauges.html +116 -0
  167. fsmes/web/gauges.js +150 -0
  168. fsmes/web/index.html +146 -0
  169. fsmes/web/instructions.css +81 -0
  170. fsmes/web/instructions.html +100 -0
  171. fsmes/web/instructions.js +309 -0
  172. fsmes/web/kit.js +176 -0
  173. fsmes/web/line/app.js +221 -0
  174. fsmes/web/line/feed.js +231 -0
  175. fsmes/web/line/flow.js +244 -0
  176. fsmes/web/line/parts.js +442 -0
  177. fsmes/web/line/robot.js +224 -0
  178. fsmes/web/line/scene.js +430 -0
  179. fsmes/web/line-page.js +144 -0
  180. fsmes/web/line.css +234 -0
  181. fsmes/web/line.html +106 -0
  182. fsmes/web/line3d.html +97 -0
  183. fsmes/web/machine.css +88 -0
  184. fsmes/web/machine.html +145 -0
  185. fsmes/web/machine.js +309 -0
  186. fsmes/web/machines.html +54 -0
  187. fsmes/web/machines.js +137 -0
  188. fsmes/web/maintenance.html +163 -0
  189. fsmes/web/maintenance.js +284 -0
  190. fsmes/web/masterdata.html +200 -0
  191. fsmes/web/masterdata.js +276 -0
  192. fsmes/web/ops.css +54 -0
  193. fsmes/web/ops.html +115 -0
  194. fsmes/web/ops.js +296 -0
  195. fsmes/web/orders.css +126 -0
  196. fsmes/web/orders.html +205 -0
  197. fsmes/web/orders.js +545 -0
  198. fsmes/web/quality.css +41 -0
  199. fsmes/web/quality.html +118 -0
  200. fsmes/web/quality.js +462 -0
  201. fsmes/web/schedule.html +130 -0
  202. fsmes/web/schedule.js +169 -0
  203. fsmes/web/spc.html +82 -0
  204. fsmes/web/spc.js +150 -0
  205. fsmes/web/station.css +88 -0
  206. fsmes/web/station.html +123 -0
  207. fsmes/web/station.js +354 -0
  208. fsmes/web/styles.css +436 -0
  209. fsmes/web/tags.html +75 -0
  210. fsmes/web/tags.js +141 -0
  211. fsmes/web/themes.css +104 -0
  212. fsmes/web/themes.js +50 -0
  213. fsmes/web/trace.html +121 -0
  214. fsmes/web/trace.js +200 -0
  215. fsmes/web/triggers.html +121 -0
  216. fsmes/web/triggers.js +175 -0
  217. fsmes/web/vendor/OrbitControls.js +1963 -0
  218. fsmes/web/vendor/README.md +46 -0
  219. fsmes/web/vendor/three.core.min.js +6 -0
  220. fsmes/web/vendor/three.module.min.js +6 -0
@@ -0,0 +1,372 @@
1
+ Metadata-Version: 2.5
2
+ Name: factorysemantics-mes
3
+ Version: 0.1.0
4
+ Summary: An open-source, modular, agent-native Manufacturing Execution System
5
+ Project-URL: Homepage, https://factorysemantics.com
6
+ Project-URL: Documentation, https://docs.factorysemantics.com
7
+ Project-URL: Source, https://github.com/factorysemantics/factorysemantics-mes
8
+ Project-URL: Changelog, https://github.com/factorysemantics/factorysemantics-mes/blob/main/CHANGELOG.md
9
+ Project-URL: Issues, https://github.com/factorysemantics/factorysemantics-mes/issues
10
+ Project-URL: Discussions, https://github.com/factorysemantics/factorysemantics-mes/discussions
11
+ Project-URL: Roadmap, https://github.com/factorysemantics/factorysemantics-mes/blob/main/ROADMAP.md
12
+ Author: Scott Kalwei
13
+ License: Apache License
14
+ Version 2.0, January 2004
15
+ http://www.apache.org/licenses/
16
+
17
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
18
+
19
+ 1. Definitions.
20
+
21
+ "License" shall mean the terms and conditions for use, reproduction,
22
+ and distribution as defined by Sections 1 through 9 of this document.
23
+
24
+ "Licensor" shall mean the copyright owner or entity authorized by
25
+ the copyright owner that is granting the License.
26
+
27
+ "Legal Entity" shall mean the union of the acting entity and all
28
+ other entities that control, are controlled by, or are under common
29
+ control with that entity. For the purposes of this definition,
30
+ "control" means (i) the power, direct or indirect, to cause the
31
+ direction or management of such entity, whether by contract or
32
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
33
+ outstanding shares, or (iii) beneficial ownership of such entity.
34
+
35
+ "You" (or "Your") shall mean an individual or Legal Entity
36
+ exercising permissions granted by this License.
37
+
38
+ "Source" form shall mean the preferred form for making modifications,
39
+ including but not limited to software source code, documentation
40
+ source, and configuration files.
41
+
42
+ "Object" form shall mean any form resulting from mechanical
43
+ transformation or translation of a Source form, including but
44
+ not limited to compiled object code, generated documentation,
45
+ and conversions to other media types.
46
+
47
+ "Work" shall mean the work of authorship, whether in Source or
48
+ Object form, made available under the License, as indicated by a
49
+ copyright notice that is included in or attached to the work
50
+ (an example is provided in the Appendix below).
51
+
52
+ "Derivative Works" shall mean any work, whether in Source or Object
53
+ form, that is based on (or derived from) the Work and for which the
54
+ editorial revisions, annotations, elaborations, or other modifications
55
+ represent, as a whole, an original work of authorship. For the purposes
56
+ of this License, Derivative Works shall not include works that remain
57
+ separable from, or merely link (or bind by name) to the interfaces of,
58
+ the Work and Derivative Works thereof.
59
+
60
+ "Contribution" shall mean any work of authorship, including
61
+ the original version of the Work and any modifications or additions
62
+ to that Work or Derivative Works thereof, that is intentionally
63
+ submitted to Licensor for inclusion in the Work by the copyright owner
64
+ or by an individual or Legal Entity authorized to submit on behalf of
65
+ the copyright owner. For the purposes of this definition, "submitted"
66
+ means any form of electronic, verbal, or written communication sent
67
+ to the Licensor or its representatives, including but not limited to
68
+ communication on electronic mailing lists, source code control systems,
69
+ and issue tracking systems that are managed by, or on behalf of, the
70
+ Licensor for the purpose of discussing and improving the Work, but
71
+ excluding communication that is conspicuously marked or otherwise
72
+ designated in writing by the copyright owner as "Not a Contribution."
73
+
74
+ "Contributor" shall mean Licensor and any individual or Legal Entity
75
+ on behalf of whom a Contribution has been received by Licensor and
76
+ subsequently incorporated within the Work.
77
+
78
+ 2. Grant of Copyright License. Subject to the terms and conditions of
79
+ this License, each Contributor hereby grants to You a perpetual,
80
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
+ copyright license to reproduce, prepare Derivative Works of,
82
+ publicly display, publicly perform, sublicense, and distribute the
83
+ Work and such Derivative Works in Source or Object form.
84
+
85
+ 3. Grant of Patent License. Subject to the terms and conditions of
86
+ this License, each Contributor hereby grants to You a perpetual,
87
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
88
+ (except as stated in this section) patent license to make, have made,
89
+ use, offer to sell, sell, import, and otherwise transfer the Work,
90
+ where such license applies only to those patent claims licensable
91
+ by such Contributor that are necessarily infringed by their
92
+ Contribution(s) alone or by combination of their Contribution(s)
93
+ with the Work to which such Contribution(s) was submitted. If You
94
+ institute patent litigation against any entity (including a
95
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
96
+ or a Contribution incorporated within the Work constitutes direct
97
+ or contributory patent infringement, then any patent licenses
98
+ granted to You under this License for that Work shall terminate
99
+ as of the date such litigation is filed.
100
+
101
+ 4. Redistribution. You may reproduce and distribute copies of the
102
+ Work or Derivative Works thereof in any medium, with or without
103
+ modifications, and in Source or Object form, provided that You
104
+ meet the following conditions:
105
+
106
+ (a) You must give any other recipients of the Work or
107
+ Derivative Works a copy of this License; and
108
+
109
+ (b) You must cause any modified files to carry prominent notices
110
+ stating that You changed the files; and
111
+
112
+ (c) You must retain, in the Source form of any Derivative Works
113
+ that You distribute, all copyright, patent, trademark, and
114
+ attribution notices from the Source form of the Work,
115
+ excluding those notices that do not pertain to any part of
116
+ the Derivative Works; and
117
+
118
+ (d) If the Work includes a "NOTICE" text file as part of its
119
+ distribution, then any Derivative Works that You distribute must
120
+ include a readable copy of the attribution notices contained
121
+ within such NOTICE file, excluding those notices that do not
122
+ pertain to any part of the Derivative Works, in at least one
123
+ of the following places: within a NOTICE text file distributed
124
+ as part of the Derivative Works; within the Source form or
125
+ documentation, if provided along with the Derivative Works; or,
126
+ within a display generated by the Derivative Works, if and
127
+ wherever such third-party notices normally appear. The contents
128
+ of the NOTICE file are for informational purposes only and
129
+ do not modify the License. You may add Your own attribution
130
+ notices within Derivative Works that You distribute, alongside
131
+ or as an addendum to the NOTICE text from the Work, provided
132
+ that such additional attribution notices cannot be construed
133
+ as modifying the License.
134
+
135
+ You may add Your own copyright statement to Your modifications and
136
+ may provide additional or different license terms and conditions
137
+ for use, reproduction, or distribution of Your modifications, or
138
+ for any such Derivative Works as a whole, provided Your use,
139
+ reproduction, and distribution of the Work otherwise complies with
140
+ the conditions stated in this License.
141
+
142
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
143
+ any Contribution intentionally submitted for inclusion in the Work
144
+ by You to the Licensor shall be under the terms and conditions of
145
+ this License, without any additional terms or conditions.
146
+ Notwithstanding the above, nothing herein shall supersede or modify
147
+ the terms of any separate license agreement you may have executed
148
+ with Licensor regarding such Contributions.
149
+
150
+ 6. Trademarks. This License does not grant permission to use the trade
151
+ names, trademarks, service marks, or product names of the Licensor,
152
+ except as required for reasonable and customary use in describing the
153
+ origin of the Work and reproducing the content of the NOTICE file.
154
+
155
+ 7. Disclaimer of Warranty. Unless required by applicable law or
156
+ agreed to in writing, Licensor provides the Work (and each
157
+ Contributor provides its Contributions) on an "AS IS" BASIS,
158
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
159
+ implied, including, without limitation, any warranties or conditions
160
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
161
+ PARTICULAR PURPOSE. You are solely responsible for determining the
162
+ appropriateness of using or redistributing the Work and assume any
163
+ risks associated with Your exercise of permissions under this License.
164
+
165
+ 8. Limitation of Liability. In no event and under no legal theory,
166
+ whether in tort (including negligence), contract, or otherwise,
167
+ unless required by applicable law (such as deliberate and grossly
168
+ negligent acts) or agreed to in writing, shall any Contributor be
169
+ liable to You for damages, including any direct, indirect, special,
170
+ incidental, or consequential damages of any character arising as a
171
+ result of this License or out of the use or inability to use the
172
+ Work (including but not limited to damages for loss of goodwill,
173
+ work stoppage, computer failure or malfunction, or any and all
174
+ other commercial damages or losses), even if such Contributor
175
+ has been advised of the possibility of such damages.
176
+
177
+ 9. Accepting Warranty or Additional Liability. While redistributing
178
+ the Work or Derivative Works thereof, You may choose to offer,
179
+ and charge a fee for, acceptance of support, warranty, indemnity,
180
+ or other liability obligations and/or rights consistent with this
181
+ License. However, in accepting such obligations, You may act only
182
+ on Your own behalf and on Your sole responsibility, not on behalf
183
+ of any other Contributor, and only if You agree to indemnify,
184
+ defend, and hold each Contributor harmless for any liability
185
+ incurred by, or claims asserted against, such Contributor by reason
186
+ of your accepting any such warranty or additional liability.
187
+
188
+ END OF TERMS AND CONDITIONS
189
+
190
+ APPENDIX: How to apply the Apache License to your work.
191
+
192
+ To apply the Apache License to your work, attach the following
193
+ boilerplate notice, with the fields enclosed by brackets "[]"
194
+ replaced with your own identifying information. (Don't include
195
+ the brackets!) The text should be enclosed in the appropriate
196
+ comment syntax for the file format. We also recommend that a
197
+ file or class name and description of purpose be included on the
198
+ same "printed page" as the copyright notice for easier
199
+ identification within third-party archives.
200
+
201
+ Copyright [yyyy] [name of copyright owner]
202
+
203
+ Licensed under the Apache License, Version 2.0 (the "License");
204
+ you may not use this file except in compliance with the License.
205
+ You may obtain a copy of the License at
206
+
207
+ http://www.apache.org/licenses/LICENSE-2.0
208
+
209
+ Unless required by applicable law or agreed to in writing, software
210
+ distributed under the License is distributed on an "AS IS" BASIS,
211
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
212
+ See the License for the specific language governing permissions and
213
+ limitations under the License.
214
+ License-File: LICENSE
215
+ License-File: NOTICE
216
+ Keywords: isa-95,manufacturing,manufacturing-execution-system,mcp,mes,oee,opc-ua,spc
217
+ Classifier: Development Status :: 2 - Pre-Alpha
218
+ Classifier: Intended Audience :: Developers
219
+ Classifier: Intended Audience :: Manufacturing
220
+ Classifier: License :: OSI Approved :: Apache Software License
221
+ Classifier: Programming Language :: Python :: 3
222
+ Classifier: Programming Language :: Python :: 3.12
223
+ Classifier: Programming Language :: Python :: 3.13
224
+ Classifier: Topic :: Scientific/Engineering
225
+ Classifier: Typing :: Typed
226
+ Requires-Python: >=3.12
227
+ Requires-Dist: alembic>=1.13
228
+ Requires-Dist: asyncua>=1.1.5
229
+ Requires-Dist: fastapi>=0.115
230
+ Requires-Dist: httpx>=0.27
231
+ Requires-Dist: pydantic-settings>=2.4
232
+ Requires-Dist: sqlalchemy>=2.0
233
+ Requires-Dist: structlog>=24.1
234
+ Requires-Dist: typer>=0.12
235
+ Requires-Dist: uvicorn[standard]>=0.30
236
+ Provides-Extra: agent
237
+ Requires-Dist: anthropic>=1.2; extra == 'agent'
238
+ Requires-Dist: mcp>=2; extra == 'agent'
239
+ Provides-Extra: dev
240
+ Requires-Dist: playwright>=1.49; extra == 'dev'
241
+ Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
242
+ Requires-Dist: pytest>=8; extra == 'dev'
243
+ Requires-Dist: ruff==0.16.5; extra == 'dev'
244
+ Provides-Extra: docs
245
+ Requires-Dist: mike>=2.1; extra == 'docs'
246
+ Requires-Dist: mkdocs-material>=9.6; extra == 'docs'
247
+ Requires-Dist: mkdocs-redirects>=1.2; extra == 'docs'
248
+ Requires-Dist: mkdocstrings[python]>=0.27; extra == 'docs'
249
+ Provides-Extra: mcp
250
+ Requires-Dist: mcp>=2; extra == 'mcp'
251
+ Provides-Extra: postgres
252
+ Requires-Dist: psycopg[binary]>=3.2; extra == 'postgres'
253
+ Description-Content-Type: text/markdown
254
+
255
+ # FactorySemantics MES
256
+
257
+ An open-source, modular, **agent-native** Manufacturing Execution System.
258
+
259
+ Run one module on a laptop for a five-person shop, or the full suite across a fleet of plants. Every capability is an API and an agent tool first, a screen second. Every number is honest about where it came from.
260
+
261
+ > **Status: pre-alpha, running simulated plants only (as of 2026-09-07).** Orders and routings, OPC UA execution, OEE, quality with SPC and gauges, maintenance, finite-capacity scheduling, serialisation and genealogy, an 85-tool MCP agent surface, an ERPNext connector, and a scoring harness that measures whether the MES told the truth about its plant. The largest simulated plant is an 83-station cutlery works serialising every piece ([labs/cutlery](labs/cutlery/README.md)); it is the [public demo](https://demo.factorysemantics.com). Not yet: a real plant in production, the per-operation ERP contract end to end (M7), plant packs as a product (M8), and PLC write-back beyond a guarded recommendation queue. See [ROADMAP.md](ROADMAP.md) for what has landed and what is next, [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for the design, [docs/LANDSCAPE.md](docs/LANDSCAPE.md) for why this project should exist at all, and [docs.factorysemantics.com](https://docs.factorysemantics.com) for the documentation.
262
+ >
263
+ > **Nothing on this page is measured on a real plant.** Every number in this repository comes from a simulated line and says so where it appears.
264
+
265
+ ---
266
+
267
+ ## Why this exists
268
+
269
+ Three facts, verified 2026-08-28 (sources in [docs/LANDSCAPE.md](docs/LANDSCAPE.md)):
270
+
271
+ 1. **No integrated open-source MES exists.** ERP projects (Odoo, ERPNext, Qcadoo) stop at work orders — no machine connectivity, no OEE, no SPC. Data-infrastructure projects (United Manufacturing Hub, Rhize) deliberately refuse to be the MES. SCADA projects have machine data but no manufacturing semantics. Nothing open-source does gauge/calibration management *at all*. Plants that can't afford a €200k–1.5M commercial MES implementation stitch together Node-RED, Grafana, and spreadsheets — and the ERPNext maintainers themselves published the missing-features list ([erpnext#50827](https://github.com/frappe/erpnext/issues/50827)).
272
+
273
+ 2. **The agent-native lane is open, but the window is closing.** Every incumbent (Siemens, Bosch, Rockwell) is bolting AI agents onto closed platforms. Tulip shipped an MCP server; Ignition announced one for 2026. An MES whose *core* is designed to be operated by agents — permissioned writes, append-only audit, semantic events — with the source open, has no occupant.
274
+
275
+ 3. **This isn't starting from zero.** The kernel came from a working, tested mini-MES (orders, routings, OPC UA machine layer, OEE, ERPNext round-trip) that was merged into this repository on 2026-08-31. The test plant is a deterministic line simulator that lives in `src/fsmes/sim/`. See *Provenance* below.
276
+
277
+ ## The north star
278
+
279
+ Siemens Opcenter-level functional coverage, as open-source modules on one kernel. The table is the **target**; the marks say how far each item has come as of 2026-09-02 (✅ landed · 🟡 partial · ⬜ not started):
280
+
281
+ | | | |
282
+ |---|---|---|
283
+ | ✅ Production orders & routings | ✅ PLC / OPC UA / Kepware connectivity | ✅ Downtime tracking & OEE |
284
+ | 🟡 Shifts, calendars & labor | ✅ Quality: inspections, holds, NCR, SPC | ✅ Gauge & calibration management |
285
+ | ✅ Preventive maintenance | ✅ Finite-capacity scheduling | ✅ Traceability & genealogy |
286
+ | 🟡 ERP integration (ERPNext, B2MML-flavoured file, REST) | ✅ Analytics & shift reports | 🟡 Agent operations layer (MCP) |
287
+
288
+ Honesty about scale: Opcenter is thousands of engineer-years. The path here is not cloning it — it's shipping the **20% of each module that covers 80% of a small-to-mid plant**, correctly and honestly, module by module, with agents as the force multiplier. Depth grows where users pull.
289
+
290
+ ## Principles
291
+
292
+ 1. **Kernel + modules.** A small kernel (master data, orders, routing, dispatch, execution, events, audit, auth) that is always present; everything else — quality, maintenance, scheduling, gauges — is an optional module. A customer installs only what they need.
293
+ 2. **Standards-shaped, not standards-burdened.** ISA-95 nouns for the data model, PackML for machine states, ISO 22400 for KPIs, B2MML only at the ERP border. Never invent a word the industry already has; never implement an XML schema internally.
294
+ 3. **Agent-native.** Every function callable via REST and MCP. Read tools are free; command tools are idempotent, support `dry_run`, and pass approval gates. Agents act *on behalf of* an identified human, and every action — human or agent — lands in the same append-only audit spine.
295
+ 4. **Never invent production.** Counter deltas book production; resets re-baseline and book nothing. OEE reports *unknown*, never a misleading zero. Unlabelled downtime is reported as unlabelled. Every screen states its data source.
296
+ 5. **Runs anywhere.** SQLite on a laptop → Docker Compose in a plant → fleet of nodes with a console. Operator UI is plain HTML/JS with no build step, because a plant PC must render it for years without a node toolchain.
297
+ 6. **Simulation-first.** CI runs a full fake plant (deterministic six-station line over a real OPC UA server). Every feature is demoable without hardware. Scripted failures — breakdowns, changeovers, counter resets, micro-stops — are named regression tests.
298
+ 7. **Config, not code, at every plant boundary.** Which tags a machine exposes lives in a tag map. What a plant enables lives in a plant pack. A second, deliberately-different demo pack exists purely to prove that adding a plant never requires a code change.
299
+
300
+ ## Provenance — where the code comes from
301
+
302
+ This project is a *convergence*, and its origins are recorded deliberately:
303
+
304
+ | Source | What it contributes | License status |
305
+ |---|---|---|
306
+ | **MES-TWIN** (the maintainer's earlier personal project) | The kernel: routing/order model, OPC UA agent + tag maps, OEE math, ERP adapters, auth, audit — merged wholesale on 2026-08-31 and built on since | Merged into this repository; Apache-2.0 here |
307
+ | **LineSim** (the maintainer's earlier personal project) | The CI/demo plant: deterministic line physics → CSVs → OPC UA replay or Kepware | Ported into `src/fsmes/sim/`; not a dependency |
308
+ | **FactorySemantics** (the semantic layer) | The canonical event envelope and manufacturing ontology this MES is meant to emit through its outbox | Not yet a dependency: as of 2026-09-07 the code does not import it (ROADMAP, "carried decision for M1") |
309
+ | **factorysemantics.com** | Patterns only: plant packs, capability-filtered MCP tool surface, single-writer locks, observe-don't-push fleet console | Patterns re-implemented here; that code stays there |
310
+
311
+ **Clean-room rule:** everything here derives from the personal projects above, public standards, and public documentation. Nothing derives from any commercial MES's internals, schemas, or documentation, and no employer data or configuration is ever committed. Domain *understanding* from running an MES daily informs what to build; proprietary *material* does not enter this repository.
312
+
313
+ ## The FactorySemantics family
314
+
315
+ - **FactorySemantics MES** (this repo) — the execution layer: runs the floor, books production, owns the audit trail.
316
+ - **FactorySemantics** — the semantic layer: canonical events and ontology this MES is designed to emit (not yet published; see Provenance).
317
+ - **factorysemantics.com** — the commercial layer: on-prem analytics/ML nodes and the fleet console that consume those events.
318
+
319
+ The MES makes the data; the semantic layer names it; the intelligence layer learns from it.
320
+
321
+ ## Decisions (ratified 2026-08-28)
322
+
323
+ | Decision | Call | Why |
324
+ |---|---|---|
325
+ | License | **Apache-2.0** everywhere, contributions under [DCO](CONTRIBUTING.md) | The two closest industrial comparables (United Manufacturing Hub, frePPLe) both *left* copyleft because integrators are the adoption channel; closed-SaaS strip-mining of a niche on-prem MES is a phantom threat. Copyright stays concentrated, so every future option remains open. |
326
+ | Package name | dist `factorysemantics-mes`, import `fsmes` | Brand on the index, four keystrokes in code. Both names verified free on PyPI, 2026-08-28. |
327
+ | Publication | **Public from 0.1.0, with a fresh history.** The private era (2026-08-28 to 2026-09-07) is summarised in [docs/history/private-era.md](docs/history/private-era.md). | Readiness and permission were kept separate on purpose: the repository went public when a stranger could install it, run a simulated plant, and read why every number is what it is. |
328
+ | Governance | **One maintainer, decisions in public.** [GOVERNANCE.md](GOVERNANCE.md), [docs/decisions/](docs/decisions/). | A page that tells the truth beats a committee that does not exist. |
329
+
330
+ ## Getting started
331
+
332
+ Install from PyPI into an isolated environment and run the built-in story: one order released against a routing, run down a simulated six-station line over a real OPC UA server, booked honestly, and completed.
333
+
334
+ ```bash
335
+ pipx install factorysemantics-mes # or: uv tool install factorysemantics-mes
336
+ fsmes info
337
+ fsmes demo
338
+ ```
339
+
340
+ From a checkout, on Linux or macOS:
341
+
342
+ ```bash
343
+ python -m venv .venv && .venv/bin/python -m pip install -e ".[dev]"
344
+ .venv/bin/fsmes info
345
+ .venv/bin/python -m pytest
346
+ ```
347
+
348
+ On Windows (plant PCs are Windows, and CI proves it):
349
+
350
+ ```powershell
351
+ python -m venv .venv; .venv\Scripts\python -m pip install -e ".[dev]"
352
+ .venv\Scripts\fsmes info
353
+ .venv\Scripts\python -m pytest
354
+ ```
355
+
356
+ **What runs today (2026-09-07):** simulated plants from a registry (`fsmes plant all start`), each a complete MES over a real OPC UA server with its operator screens; `fsmes score <plant>` replays a scripted hour and reports whether the MES booked what the line produced, whether a planned stop was misbooked as downtime, and whether the scripted breakdown was detected; two MCP servers (the product's 85 tools, the simulator's 13). The test suite is the gate, and CI runs it on Linux and Windows.
357
+
358
+ The public demo at [demo.factorysemantics.com](https://demo.factorysemantics.com) is the cutlery plant from `labs/cutlery`, simulated, serving a copy of one scored hour. Nothing there is a real factory.
359
+
360
+ ## Where things are
361
+
362
+ | | |
363
+ |---|---|
364
+ | Documentation | [docs.factorysemantics.com](https://docs.factorysemantics.com) — plant, operate, develop, agents |
365
+ | Questions and ideas | [GitHub Discussions](https://github.com/factorysemantics/factorysemantics-mes/discussions) |
366
+ | Bugs | [Issues](https://github.com/factorysemantics/factorysemantics-mes/issues) — say whether the plant is simulated or real |
367
+ | Contributing | [CONTRIBUTING.md](CONTRIBUTING.md) — DCO, house rules, provenance rule |
368
+ | Conduct | [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) |
369
+ | Security | [SECURITY.md](SECURITY.md) — private reporting, what is and is not in scope |
370
+ | Governance | [GOVERNANCE.md](GOVERNANCE.md), [MAINTAINERS.md](MAINTAINERS.md), [docs/decisions/](docs/decisions/) |
371
+ | Changes | [CHANGELOG.md](CHANGELOG.md) |
372
+ | Licence | [Apache-2.0](LICENSE), with [NOTICE](NOTICE) |
@@ -0,0 +1,220 @@
1
+ fsmes/__init__.py,sha256=DUzpYLqeHheZmGNRE9w3ETEH3-eCCl9YeUcLBZIG7Mw,408
2
+ fsmes/cli.py,sha256=pIjKoJymVVXdp-AWf5BEcaOHr7sFusAv6wkmSo_9R6M,49113
3
+ fsmes/config.py,sha256=U6tw1N99t7-jQVzNK95pXRjobBxTcknnhuiUMVP_4Hc,4588
4
+ fsmes/db.py,sha256=UsvyutjNYmkatxMukhjRx5usoj7Q2jHK7PPya4d40b8,1939
5
+ fsmes/demo_feed.py,sha256=MpZVipOmXCbn4f-HVFh2CLLZ2LxSdZmffhJIuDbdd6g,3974
6
+ fsmes/logging.py,sha256=hsODoUGP97VGu3C9klVX8sEYgIphmVJtGXTG6NB-6Nc,2772
7
+ fsmes/mcp_server.py,sha256=JdTKvY8znb3Mkk7MBxMtf5y7Peg8PV6pI9VOJFa0w6Q,27577
8
+ fsmes/plant.py,sha256=Aj4GMEifwmtp_gZE7qJ33xhyvMmDjpUfrvh5btemuTw,24149
9
+ fsmes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ fsmes/seed.py,sha256=qQPdYMZz5itGbLl6TzRHm2fe7KtezhlbhXCXEBE_z-s,3096
11
+ fsmes/seed_kepsim.py,sha256=0u9avxlZQlh0dB6bKsvLiFL3g1fDeOImLJVFXFPYMgU,8223
12
+ fsmes/seed_line.py,sha256=nwUBhZD4mh6LfpB4L27b2JM6Nk4zyBYBQ_VkDUV8OEw,4430
13
+ fsmes/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ fsmes/api/app.py,sha256=-aOB76SBpPmIcTHTs5ntfvGisYbFxeQHnRuhGOStxO8,15258
15
+ fsmes/api/deps.py,sha256=OZPVBSu390plialsIVhUJU2Ct1pODdbsHUaQjUoE0wg,4108
16
+ fsmes/api/idempotency.py,sha256=uPd8eH9i2oA0YXPiMJOd33CoyWoHN2DzBQTmUi4vIko,3189
17
+ fsmes/api/paging.py,sha256=fOGo7tvJAQXR5DpnIsMr_SmZVn5C5R6-GueWvkF3IVQ,2212
18
+ fsmes/api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ fsmes/api/routers/adjustments.py,sha256=KLpxzws11sOIFYnZD1gzCn6vYV6VisgyDGWHVw3qPvg,2323
20
+ fsmes/api/routers/admin.py,sha256=YaeH8Q6NLT0hxZlMoOW0hxei4yhcJDrIj6qJEn6QKiQ,6328
21
+ fsmes/api/routers/analysis.py,sha256=S6khkDPmlLmpPGKGrZl2tLqds8WmRXS3GgVEpet4tGk,2899
22
+ fsmes/api/routers/assist.py,sha256=htiy5p4oky1cEYFgrQvW5O6TCYgY8F6FhgzQKySte5s,9508
23
+ fsmes/api/routers/auth.py,sha256=GI8IgmC_3D-tBtUdoCPYFdHYFWhN9ymhUSiNZbMmiVc,2750
24
+ fsmes/api/routers/coa.py,sha256=wDBb2BI4Jr9hD8xuRX58EGsiY7XXCLceu5W24AMUPo0,2611
25
+ fsmes/api/routers/dashboard.py,sha256=jiYIVMo954wZPnj_rI4ID3zOMCEfTU9qiAk97WvbdiE,7863
26
+ fsmes/api/routers/design.py,sha256=mCjA3H4QewQ-ENGlvBfWolx-0fTW_4KrPgH-u-WdnIk,4919
27
+ fsmes/api/routers/documents.py,sha256=qjosIrRujHehfBYvxWjyyzJuUDi61gN59d057ZDzvoY,4812
28
+ fsmes/api/routers/equipment.py,sha256=th8Wj04xWyhmKXZdGDPL51Ulgd7adNNMEvIvSCGUlcs,3204
29
+ fsmes/api/routers/erp.py,sha256=tCcCHxVbiFm7bp60k0h3ynhk_HSk_ZaH8dDNW1lRmFM,1017
30
+ fsmes/api/routers/execution.py,sha256=AapY0idSepSs2ixx_BJbg9KPsT55WGd9yi7JQxLq2P4,4303
31
+ fsmes/api/routers/kpis.py,sha256=1ZFAZFeSTkgfKf6f0qEV6PxtD4jB_HxNPUudqHYEEY4,1146
32
+ fsmes/api/routers/line.py,sha256=vR5fAivw9xbpqzaaIMonyl1PqanSYizTCwEpssXlub4,1648
33
+ fsmes/api/routers/maintenance.py,sha256=IPKepwkRi3PUHRSRdiW46Y8cO5YVqa3A5OuNYpp7q1Q,5558
34
+ fsmes/api/routers/masterdata.py,sha256=nggxyGp9sQGHMXbCiB3ogc4HnXumwO8GwNcVMcOxyHg,7083
35
+ fsmes/api/routers/ops.py,sha256=lM9qS1r1O0hfLY3iKnWTeJhEmAmxk-_opbx8YGXksBc,6767
36
+ fsmes/api/routers/quality.py,sha256=yxIL0gTYBCYrVj35KGR6UgWjQTIGoDthfN1KRhJ8wSY,9320
37
+ fsmes/api/routers/scheduling.py,sha256=XQxtVVVx0FrRoTm2z40HdgV-HgjilsbwX6Tc69yGENc,3150
38
+ fsmes/api/routers/serialization.py,sha256=HEuYvrS8wuEKOhzypzjh4WlqktFZgVx1ap5IhU9YUoE,4380
39
+ fsmes/api/routers/system.py,sha256=3GEJRMp1qUs_vXHsSBkYWtnPbzoD2kadL4HdoAr7Nso,2787
40
+ fsmes/api/routers/triggers.py,sha256=ysvyAEv5zn6xz6w3kHA5dk7d4ziRxIyl9pSWM6PB2Hg,3451
41
+ fsmes/api/routers/workorders.py,sha256=BMN59ksmHyMwh5q0RpOiASDmT-YKmfxUi1QODLK-ODg,8179
42
+ fsmes/core/__init__.py,sha256=I8urFBG-yaHIhyH0jkdfqyq-T-uJExmNsRgsZWEzlj4,280
43
+ fsmes/core/oplock.py,sha256=kv9-qBwFFFQNGrNOZGxnfgBnwfMHyUdoASOyAcDsyz0,2400
44
+ fsmes/domain/__init__.py,sha256=wblGbNzC5bQQBP6TzytKeZTwAb5YFVg_PpGtAYY1ca8,2831
45
+ fsmes/domain/adjustments.py,sha256=zaflKme26yaIbj7727L0RkodiAKVS0mM-_Or3VqlZw8,2768
46
+ fsmes/domain/audit.py,sha256=LK9p_XFlDJMxOtXWMJcZKuu3tqqsgFZ2dw9fB8Ff1-k,1391
47
+ fsmes/domain/calendar.py,sha256=GboTHZcvq6vh5Fs7cNwaNdZPYvjdXJpnkolxRxMr100,2847
48
+ fsmes/domain/common.py,sha256=4thxc-5ZsGXqs9ZixpS736XtNwBzdtZMSrHw7sTGl0c,404
49
+ fsmes/domain/documents.py,sha256=TZMhm9pBNqT6aasENpZ3v-n0AmwBWMcibJscXTfkN8w,4464
50
+ fsmes/domain/equipment.py,sha256=W_x0pZ964c1m-gVjIfwxtoJaJOairGSCDarFS8zvC0o,1609
51
+ fsmes/domain/execution.py,sha256=R2t7IWTkXLtmd4j4ctFlnmtdX5oLda2ZJT4BTaRJUmI,3126
52
+ fsmes/domain/gauges.py,sha256=yD4pbQBEfQ7_aH25WjZBDw3KNPZ_yu2CH8uwMsvAuo0,2826
53
+ fsmes/domain/idempotency.py,sha256=6oi62BIXh4BwaBam2ogS6BHI78n815Ou6BLxaIwWyjw,1169
54
+ fsmes/domain/integration.py,sha256=ltfm11w-jhQr2G3n0U7r8Sp5auxEgEmf1zKne2-bp7A,2148
55
+ fsmes/domain/maintenance.py,sha256=CJaIkB-Ej7xjuTj1_gef1YPAyi7DWIZIJZJWKeyz2hs,4644
56
+ fsmes/domain/masterdata.py,sha256=XJFKaF7cixGw9zDgNznQTQGSscwpImSQc_GEyqXwoXY,8306
57
+ fsmes/domain/quality.py,sha256=p0p4CA53eo4A6yr-AsU-mLM1u6K9fA7ZiHVYN5GcZSs,2575
58
+ fsmes/domain/scheduling.py,sha256=O5CrmtFLKilcb7pw-Z3In19cq8jBBgurftQ31gyrhV8,2627
59
+ fsmes/domain/serialization.py,sha256=uFCKxTGVS2hZtenct3OBiPPiuqWsw6gBmy3FPePxi1A,5539
60
+ fsmes/domain/timeseries.py,sha256=EXaT1IE3-jOzBW3HkZWga4gLplWYE15nZlIAKXflCRU,1035
61
+ fsmes/domain/triggers.py,sha256=phKQZnaDC6sP7BgtRL31S_SMa0rAuy0IoQldfpLQAzI,3742
62
+ fsmes/domain/workorders.py,sha256=uwSOQz0SeehxCuSOMR4Dg8Yl4sTnFT_UJiJPfIBYsWM,3989
63
+ fsmes/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ fsmes/integrations/erp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ fsmes/integrations/erp/b2mml.py,sha256=5PCdPHeaijJ7Lb-XuAu5q72s9QoHkL2LodGHw9HV4G0,4233
66
+ fsmes/integrations/erp/base.py,sha256=j4RPBB18Trec6BhXfiXE9H--qtnxS8wfpWesr_vIJsc,2152
67
+ fsmes/integrations/erp/contract.py,sha256=1QHvcUM8rSXgo_V44Pp4J-oizrAySsKQZerS-lKiC3I,4540
68
+ fsmes/integrations/erp/erpnext_adapter.py,sha256=ein1K_ivTfg7DMkqna5PQWoTEGi5eU_o3WGuXreohls,12083
69
+ fsmes/integrations/erp/file_adapter.py,sha256=9KQHn3H6WzoIvHEuBw4vR-4qvNEBDetBewxqmtlit-I,2594
70
+ fsmes/integrations/erp/mock_erp.py,sha256=OmirwDrfzumsBVPoYDFYjbSd8z3b7YhPOs4XcSXneSQ,2268
71
+ fsmes/integrations/erp/rest_adapter.py,sha256=PEUSOgFZzpXRxkh0iOPJae0HPM2aV0Pw0Dd0xWjswmg,953
72
+ fsmes/integrations/erp/sync.py,sha256=AKXuqAZcyo1V2VTCS2N1T1HWN7gMUtO6pli977TtKUw,2747
73
+ fsmes/integrations/opc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ fsmes/integrations/opc/agent.py,sha256=qsZGQjNErskiy8xsx90xkttd4OpCp2JLH5nM05lRiJ4,42567
75
+ fsmes/integrations/opc/csv_replay.py,sha256=m7gG__6v9W5tcaHHaWhQcZEvZQSWfu_-37BZl0V8cBg,24809
76
+ fsmes/integrations/opc/inspect.py,sha256=oAN8bd6xn3vxPiQscUOCSevB43u-u9wSjP1Rxo8s7wg,8179
77
+ fsmes/integrations/opc/security.py,sha256=yDf1htu9XZ4cau4Ufrj1HkDghY6yvijqQK3EBaNZdHc,5627
78
+ fsmes/integrations/opc/simulator.py,sha256=pGcP-wJvihjsut1uqWuihUEblSirzMpMm3-h5BvPqRw,3978
79
+ fsmes/integrations/opc/tag_map.py,sha256=rTRZuOIYYpWxzwpxCt83ZBglP0aVI9aRAjT2pZ4_muU,10093
80
+ fsmes/integrations/opc/worksheet.py,sha256=7lliCu5hZpfGZydzsGD8vp3u5_-4V-tTL58h0v6oY_4,7940
81
+ fsmes/kernel/__init__.py,sha256=fbW01moLqadm6bgtta9lyoT-rwuQ2Pfj8QRijqCiqA0,454
82
+ fsmes/kernel/common.py,sha256=0U-faD3EJkGsKSnOyI0uiisPlwtDIqoMfWluMqd67T0,840
83
+ fsmes/kernel/tags.py,sha256=uYb2WP1WE7HY8CaR-sNqnvtfeqV613ctIpvzV4KGvVU,2330
84
+ fsmes/mcp/__init__.py,sha256=ftSml5bZcQN1lL97saICsre_SDQekCZby95qX6liuL8,347
85
+ fsmes/mcp/adjustments.py,sha256=O2fFfzslYa891bzdZcUxbi8EizD7-tazd5wrjBIwrMk,2566
86
+ fsmes/mcp/coa.py,sha256=tNDrgF0LejXHFz21OVIM54CKnZ6JzLfbH2r5z0fif6s,2845
87
+ fsmes/mcp/equipment.py,sha256=ENVsyHUYEN_p2kDDI8eY4pAGmukrEGRmFzXs1nWJ5hY,3950
88
+ fsmes/mcp/erp.py,sha256=fIM9BeOSuPB_4HHTj_tACD65k1E49WGR5_6GOTuENKw,1407
89
+ fsmes/mcp/maintenance.py,sha256=sETqah0cYib4lEzFtdFqlRWQ3ngAiBnl0pcNpV2Akc8,5358
90
+ fsmes/mcp/masterdata.py,sha256=fV1q83OgvHyVBmupTMj3_tHjMx-Os76DVYcVGxWYl0c,6699
91
+ fsmes/mcp/quality.py,sha256=moLEy0mZOwW3zzQq8KQ0CU3Zq6U6eqYPeds0Jc9CPew,4898
92
+ fsmes/mcp/scheduling.py,sha256=_Ge14VUHwtYqu_M86k7gEK0602OShS_SY2Niv-V-fGo,4163
93
+ fsmes/mcp/serialization.py,sha256=yrjleRpSsQJt-E_oaQ9tePKnuC4LXlvFRAqk6qfallA,5049
94
+ fsmes/mcp/triggers.py,sha256=x4ba6KQFhXo5YPgO8mlkvtawMwvyCYt22yKRNCzDxA8,3366
95
+ fsmes/services/__init__.py,sha256=f7a3_jpde3UiInM954H3pm8_ub0Go-OAQjl7Nls-wWA,491
96
+ fsmes/services/adjustments.py,sha256=XrkXxrbAmRjZ1bf_SIolpg10y5W7T4wKeLDKijvfhc0,10901
97
+ fsmes/services/agent.py,sha256=-Kkn5cWRm2VQyWFm-aBpUcUeZJjbSQp8nYzu-JB-668,21869
98
+ fsmes/services/ai_status.py,sha256=fIGVDkskuGRno_po__cZIzoF35SS8H1y-Wl3FAiAE7I,11423
99
+ fsmes/services/analysis.py,sha256=96BNTsttkbnOe4u3TXEk8asgpp9pWUOqw7Z7XVgosAA,22247
100
+ fsmes/services/assistant.py,sha256=O2Z_Fc4ijc18vya8OU44ARGAdEF1lfx0nYbUgSuTqmw,38616
101
+ fsmes/services/audit.py,sha256=EFePL2dk73hFQA3YNkPBRM8iRx8JYW_w9MgKhh7iGgg,747
102
+ fsmes/services/auth.py,sha256=Do4p9AdEQUw81Aj1kdfwlfsjo8FaFhLUaDz9z_maqE0,7504
103
+ fsmes/services/calendar.py,sha256=BcaQltReVwYFC7vNlmbwwBwFjhGc9Sm4jtfdKyIfLLg,8256
104
+ fsmes/services/capabilities.py,sha256=f7G47n376-Mblq8zadoeBthMn0WHE2OFyBCs-MWXML8,5425
105
+ fsmes/services/coa.py,sha256=QsO21LsVTDRQxjiU-5g_K3_4GsxxNo2GMQOzuOD9WEQ,23055
106
+ fsmes/services/design.py,sha256=2BmAxO70t92ejwi_onleRCrsG0S1kiktGSA7WEEOzvQ,14541
107
+ fsmes/services/design_triage.py,sha256=RQFMKXlFTXgGMpLpCHZoS3KFu1BFxAkini6uqNANNak,9167
108
+ fsmes/services/documents.py,sha256=GmeZ8mn8wm9a6qFIMBzXUU7qHymyl9BFB7-EeqA0dpc,10526
109
+ fsmes/services/drafting.py,sha256=hfFYaG497W97Pj7XgZmAlSt7-OdB41dl5sJ3XnkcL4c,5883
110
+ fsmes/services/equipment.py,sha256=39rzLLHWKgHoEdoh70xendkAWsB5x-waDU_skrYDuJs,10249
111
+ fsmes/services/erp.py,sha256=PWe3eUg9aKoJ05je1XtI79V_5Wbu5ThGl6Des7ecdW4,10148
112
+ fsmes/services/execution.py,sha256=HpUeaCP2OtqU_1qvy_rJfyBufx7OCIp_n-hnYK4wpRE,11479
113
+ fsmes/services/gauges.py,sha256=Foqug9Wg2MWwRFBFuB27PFghVbFmM-gkhtRLyRNkusI,7461
114
+ fsmes/services/line.py,sha256=R6HxspbYeUnxTDeKhj81iOlKX7csXmtxKEmV_WjjuZw,14159
115
+ fsmes/services/maintenance.py,sha256=r25ryQSv1vNdw2If3osmbPzQsbmzTnOcA8GG6aIgaPg,12296
116
+ fsmes/services/masterdata.py,sha256=1qDKFA4ANQT06sbmbDTozhjFUkKZGExKHc6MzPetT6A,9790
117
+ fsmes/services/quality.py,sha256=k-liLSSfYPfL_99pQv8Rn3rynoqMvF8hrBV17AZWERA,4488
118
+ fsmes/services/retention.py,sha256=wQhHUGeNL3xdn7tYuOaNq8IPxPdWRsAoY0qF2wYyAeA,2937
119
+ fsmes/services/scheduling.py,sha256=sdhkvg2j9KIUI-1W06s-VWbRBQZR6k72Gbfg0fKTyUE,11553
120
+ fsmes/services/serialization.py,sha256=Uf3WU976N84vJzLp3HFsq7f3dQSx4s5H6I9JbRolhwc,33250
121
+ fsmes/services/spc.py,sha256=KjydsZFtl3Jskgs_kji55Tp2QihHUo3GL4iV7oWo9w8,9120
122
+ fsmes/services/staging.py,sha256=I2Fr31rPtdXm2dxJVIFx7xyF9OY_dCVcV-VlaneSsKI,4320
123
+ fsmes/services/tags.py,sha256=ElBi0YPEdLFTBIaYcdVbpBiLKeAbWdwBctO79t0oOXQ,16110
124
+ fsmes/services/triggers.py,sha256=s4eil8dUyRe0urxfwoGxXyYIX3bNfZ6UV1aFVc9-mBE,16063
125
+ fsmes/services/walkthroughs.py,sha256=tgFaXUIJk3dzpCPKJzbx9PdbBS3oc91wpaIspyqsHu4,4879
126
+ fsmes/services/workorders.py,sha256=x3DI7VpLxaBbewrwYktolIDWrPI9MLpsn9li0sy3sAo,10702
127
+ fsmes/sim/__init__.py,sha256=Mm4vxTDLi0ALFo7I4DDr9epg3Te02oWQnC7L44Y8Rp0,785
128
+ fsmes/sim/agent_eval.py,sha256=eEwe-3RQzmAAXH5rC5Nh7kaj6LpGmEpnAy2sxsEGdrU,11893
129
+ fsmes/sim/autoloop.py,sha256=O3dJX0cskoAOfZMsfZDjJ04rShOYXXwVuekIdMTcmEs,14886
130
+ fsmes/sim/generate.py,sha256=lKnfCEjjAYqdzzhLqbQSN4yRiPoNiSRyYAU08uyLUJ4,34018
131
+ fsmes/sim/mcp_server.py,sha256=Q62m4szwXyxOjkPZbYkGcqwr6QeB23nJYSW-kZdi-6U,16549
132
+ fsmes/sim/operations.py,sha256=UjFKcxkEQEKl417NPhLQKGktbsH5tAt_5kFqXQ8keNc,14892
133
+ fsmes/sim/rollup.py,sha256=Q_VpQFqjY_ICaoUwW7vGpkf5pwCKab4Gzcp315kwyeE,11565
134
+ fsmes/sim/runner.py,sha256=F_q5cNPlXhgLd05xyQ5mOv6uyJJIz0aJibLS1LWqTJY,21751
135
+ fsmes/sim/score.py,sha256=uuWJBk6byzhEZGgf18BgTjN_US4STuF0pbuxoF6_FDQ,11778
136
+ fsmes/sim/store.py,sha256=hPzBrp3u61JNmB6i7b7H0ZQ3_B3yDWjulgrOKuktMdo,7977
137
+ fsmes/sim/sweep.py,sha256=wuQco-X_kzimBNCd2W6cVYJmYSirpphEz7C0HYEyT4M,5604
138
+ fsmes/sim/triage.py,sha256=BzmOeIF8mDMkXVAe5-KC5ULIiAmDlTbKJbZBJ-l1dVI,5303
139
+ fsmes/sim/truth.py,sha256=r6HpcR7UjkIQGrtBKwxWyGNDQXRVPPm6dxqjlPHpfdE,5548
140
+ fsmes/sim/ui_check.py,sha256=PWALwkEowyuXrhz5VrJQemwZbZlpIEkP9lGrtKpCNXw,15297
141
+ fsmes/web/adjustments.html,sha256=q8-G0TNuOa6OU0bgCJ1lGHwUGShSmb32nOn32T9DGAw,4332
142
+ fsmes/web/adjustments.js,sha256=dw8x_7pysM7o-83CEnlKIsEVCUq15d1VjoovpZZ6oXE,6720
143
+ fsmes/web/admin.css,sha256=zh-Mfoa8coCSqQza3bfFkI7v9hjJSk0jXNRAR1FuiMw,2060
144
+ fsmes/web/admin.html,sha256=uAaAKcVF3xVCranlvc8ufhjnR50JZWmMy4EYAaVGbjQ,5179
145
+ fsmes/web/admin.js,sha256=Etkis29U13jHWaTj_Ko36nG0v-zsMA3XjLobIrv1XJw,13731
146
+ fsmes/web/analysis.css,sha256=5VDPAJqJUD-J98KAEwxFTsexjK7pM0rUJLJKrGY9ax0,3892
147
+ fsmes/web/analysis.html,sha256=s5g_z_poS7_DwdG5LPfBe1im2Qv6Jq_28taFKZbBT-A,4140
148
+ fsmes/web/analysis.js,sha256=6T4-gcl4cBLIQQ3RxihPwheTP0yMbV-x969aZM0chhI,11026
149
+ fsmes/web/app.js,sha256=oTzfdFOA8JVkxN3PNys1wvyJv_n8oEsaY1A4zAmUOQo,20262
150
+ fsmes/web/assist-record.js,sha256=LGBdImGHV5ne-4tEjWfkFVRxbE2Zo0qdXkGn6BO5oPg,23640
151
+ fsmes/web/assist.css,sha256=HglJYvy5Orcbjnmf5stlua_2H0asOAjMsIzmEOPWR74,12522
152
+ fsmes/web/assist.js,sha256=UlApsioRp5uaoa_9t7KhhSLWtwsD3AbPNHWb47TLLQU,25101
153
+ fsmes/web/coa.css,sha256=77e-ji0aD8T1wwAx0-Ib7qPFkGXIEnorKpOqMEMT8t4,1203
154
+ fsmes/web/coa.html,sha256=CRCDmHewO4mYYZWGBWzcIaNL0kcnH1IszQGODWv4bPw,3251
155
+ fsmes/web/coa.js,sha256=SHGNZa2laNlPYWvzqatHGkSRj6h78VBlz8rs6MiY8w8,5861
156
+ fsmes/web/common.js,sha256=1HyG9iAbEyvLO0kmXrpVW8qZhhmgS1NSw0Vm1oP4NAw,15541
157
+ fsmes/web/design.css,sha256=2ooCi7TKoeCgzvQC988rI9G1FvGz5Fo2bS0bXH64wWI,2690
158
+ fsmes/web/design.js,sha256=lxTpddsyxmEhdhd8Dp6bTkGdSUCxx2xgJxL9nvoxcGc,6923
159
+ fsmes/web/gauges.html,sha256=dKuF0qEv4a9HiymrxpZKShR7LGsa4hi_gdnf6Q7xmyY,5490
160
+ fsmes/web/gauges.js,sha256=mJauIY4LnIqFX7hWaOzbwIv_K3HmEvZiKsyPqOQbB6w,7126
161
+ fsmes/web/index.html,sha256=8Nqn_8zu3ZwtPMuC6-F3juOdG8fx-vFxRLH9C6_ZOWM,7072
162
+ fsmes/web/instructions.css,sha256=2Ze-Nh5ioQ2SxDDLpmMgtOQDCqvDk_aqVt9qpfjtoFQ,3253
163
+ fsmes/web/instructions.html,sha256=G1YYiClZowLsh2JTUVNuyCoSwv0aoohTihRMG_UR0fI,4119
164
+ fsmes/web/instructions.js,sha256=SBqjY7AjV_-qg07NlikGCSWItJrBwcDFYcmlUH5e4mk,11682
165
+ fsmes/web/kit.js,sha256=LoszIeEJoJGhNabcM5ZcuE_DYdWOO2ORugh5j9i0Y1s,8320
166
+ fsmes/web/line-page.js,sha256=YeZfTy6-bZ3PABa0gTumdbOLpaYmIO73a3vP49mjptU,5798
167
+ fsmes/web/line.css,sha256=Iajh_s7XUB_sYnjoXRInu7mtxei4d0nW5wxJ43Wa7sw,6543
168
+ fsmes/web/line.html,sha256=oS7Y_Zoq4SYO0Wv1O1xkfiey5yxrnq5AcquNr3WpY5Y,4480
169
+ fsmes/web/line3d.html,sha256=7JueUTsI98ZXaf-MVrrZ7vBI4sQRefG0D94GfobesOI,3527
170
+ fsmes/web/machine.css,sha256=mrT3sXk6C1f88_LEtBWTuijHg9myYj1qs1be_H-7Zr4,4575
171
+ fsmes/web/machine.html,sha256=Ch-f8KlmKaRHN32A9MInSyNX69mjVlv2NmQoLeACjLc,6008
172
+ fsmes/web/machine.js,sha256=gcYfha2upgizVQ62gzkfHD5dVRSAHAikDHw4ILSJEZY,12569
173
+ fsmes/web/machines.html,sha256=fvfACWmYs6JE89fq197f-hx4c3VYYu2vBW5xHJCnhZc,2177
174
+ fsmes/web/machines.js,sha256=pFukM6QCqi_EYn5T5hwHSfshH5LYLMN-ulvpM1C1JTE,5409
175
+ fsmes/web/maintenance.html,sha256=qN52ofG9GdoDrFQMIvYWlN2frap-sBSyOiYKp-KtJPE,8129
176
+ fsmes/web/maintenance.js,sha256=FacYVn_B1cw7L2Xd5NZxBXGPHj6dCw5aw5FhpF-mOnY,12006
177
+ fsmes/web/masterdata.html,sha256=4yhIpvebO5q8sj6yz5MRGVh59_xw91Y1-233GBX7-B4,9445
178
+ fsmes/web/masterdata.js,sha256=ZPkJgoieR-zu3Z_eZLLxLRZ3LNiYO2qTB2sJOITuwic,11772
179
+ fsmes/web/ops.css,sha256=-vA-KV4CgzpWm29mSb__zF_CkhC-S_F96aGIIJLQ7k0,2401
180
+ fsmes/web/ops.html,sha256=Mw6wGZ26E82-4SbFPE38wQg2xuy3bEhMCnsHmXEW5hw,4470
181
+ fsmes/web/ops.js,sha256=MacuOew_q4zN0CRxooMHD8knjHcNUhEwGXyg25LAV7M,11107
182
+ fsmes/web/orders.css,sha256=wHMxx-ZYQ9DsqXoZlUxu8RJ9QzH-_OVnnNiBwAVd6qQ,4091
183
+ fsmes/web/orders.html,sha256=MuXXV9nBIvjT9Xre4qX4ZkDujPNUKmZInQ1H2UGLBbg,9350
184
+ fsmes/web/orders.js,sha256=noEcjees87mPaECBBwpz-a1IV6bfg-1NWwLEmzaTuss,18718
185
+ fsmes/web/quality.css,sha256=cygfz5YXFjAW5CMVELZRFrqEmSWQyP6C4zAV3t3tV7Y,1507
186
+ fsmes/web/quality.html,sha256=556CY-ZjeEmBsieB16j27ndiKHTVKu3UQ1bcqnTsG9E,5450
187
+ fsmes/web/quality.js,sha256=pTW_LvFA-4y6sR2Vh2mX-nd3WVvtKz2X0b8dLu6sJJc,19985
188
+ fsmes/web/schedule.html,sha256=YEJykMdn2kRdtUg0vsroabcm80w-o438oep65eOYGL0,6292
189
+ fsmes/web/schedule.js,sha256=BYIB0LEXkoMAsCY8w9FtD6d2ehc4BrD0mo2rmkMY6KA,6789
190
+ fsmes/web/spc.html,sha256=NReGOBgoVzFF8cWaoE55iOxxKaN8gXopHF2cSg5WxAM,3394
191
+ fsmes/web/spc.js,sha256=CzvPt9PSR7I2t8ETzSkWqQMG0py4i6x873qQUdCcsLg,7232
192
+ fsmes/web/station.css,sha256=Wckbfr3EGsdYujbb1S3NPwXoRsjyf2dI5og1kRlra8E,2532
193
+ fsmes/web/station.html,sha256=etr_eu3t6uxTArmuY8JtdGKWBjhNn-GZRxd2gR_6k8Y,4975
194
+ fsmes/web/station.js,sha256=ybqhOE1M0flADNRc3_WmSv8Pd1OaRFrcQM4W619oRrs,11604
195
+ fsmes/web/styles.css,sha256=qTpzBR9YM7DAGwPnw08nREd7lcA46YMkBMkQ97eJkS0,15336
196
+ fsmes/web/tags.html,sha256=V3p8Tc25PswOHBakikANdsttwgUOuxsIMi7nG1ZlURA,3400
197
+ fsmes/web/tags.js,sha256=Q3QVRipNMwSs5vLDMhcP6-O-5mS4jkbrnaGMJD9C3qQ,5678
198
+ fsmes/web/themes.css,sha256=tOtuN1p3jJjVrVC-kPHAyUZIlo622u_DXeA6l8IoiVU,2723
199
+ fsmes/web/themes.js,sha256=vwdl5vT6_z-R5UroLpHNVmvad8uuQskt5Bx12zY-zks,1694
200
+ fsmes/web/trace.html,sha256=bGVedoe5-NsSp7yWt7ctwhjEI4iEhz2DU9jcLCqRtWg,5360
201
+ fsmes/web/trace.js,sha256=Pyqx6Re-OZU2ydEWPjHpkPeA7VrPwE5I2v__OTGyGgM,8815
202
+ fsmes/web/triggers.html,sha256=U21YF5vzUv68hJ35Z9fYchQEX4vCdrMob2cvsPYZ9Ro,6303
203
+ fsmes/web/triggers.js,sha256=k_4cB8K49BmGDTYUsd2eQGOXBCnVxVGajncZTpS51KA,8935
204
+ fsmes/web/demo/kepsim-hour.json,sha256=r-7dmJFGlTZGEUYfNcXMVMcpCfVAUJQ6l2AkPpAt01A,520408
205
+ fsmes/web/line/app.js,sha256=vtj6hikSWhn1dUtseJLRNHhsFj9JzRwhRqpPFQNm1Eo,7848
206
+ fsmes/web/line/feed.js,sha256=AgqcFMKHVVT-Jl2T-EB8UNkFHfM09LWozZBwIDAGgpU,7748
207
+ fsmes/web/line/flow.js,sha256=Vyxwmj1-Zw3nJ6mRCEkgSK-cWEx1BfD0zy0p1xRBzJ8,9485
208
+ fsmes/web/line/parts.js,sha256=MKTnmAKB2tq9U-aVbsuYsLF3ApNZV2PPeKgLVPcv514,15770
209
+ fsmes/web/line/robot.js,sha256=bnz78vG3spGE1UhjYbllly2l2RnTidZBpEgCHs6O35c,7678
210
+ fsmes/web/line/scene.js,sha256=7kjXr2Ki6G5Frcfzok9fUuVt3DX0UMuU6Pnn_WD_bgY,15033
211
+ fsmes/web/vendor/OrbitControls.js,sha256=-qu06N_ZI17kqf18mj11-Q8WidvUlEvW_TIRfazsX5M,40504
212
+ fsmes/web/vendor/README.md,sha256=QD-xBNzU1D_DMAZ0e2BJV77WZxUxD7M1XkLc3RlKk6A,2162
213
+ fsmes/web/vendor/three.core.min.js,sha256=BbJgkzjHbNZdr3TzrFFbyaUEXhs7M-3AfYyb1VJQ-pA,385386
214
+ fsmes/web/vendor/three.module.min.js,sha256=hrzuJItk9EvPwjwzGudGGQYZV9WcqwQBcdy2-1kAvrY,365552
215
+ factorysemantics_mes-0.1.0.dist-info/METADATA,sha256=5_fZTPSR5AM_-AN3hNg7pKKRww7zLV8vl3jxJUvx9tI,26445
216
+ factorysemantics_mes-0.1.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
217
+ factorysemantics_mes-0.1.0.dist-info/entry_points.txt,sha256=KfNT-RUEKg644Qf7QZUcHLXhaYItR_Stlqiw7GaRbqY,120
218
+ factorysemantics_mes-0.1.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
219
+ factorysemantics_mes-0.1.0.dist-info/licenses/NOTICE,sha256=erxKaAZheOBBiA8VxAu_BNQjZADph59Y0_WEOJieLIA,1504
220
+ factorysemantics_mes-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ fsmes = fsmes.cli:app
3
+
4
+ [fsmes.modules]
5
+ erpnext = fsmes.integrations.erp.erpnext_adapter:from_settings