flyte 2.0.0b32__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.

Potentially problematic release.


This version of flyte might be problematic. Click here for more details.

Files changed (204) hide show
  1. flyte/__init__.py +108 -0
  2. flyte/_bin/__init__.py +0 -0
  3. flyte/_bin/debug.py +38 -0
  4. flyte/_bin/runtime.py +195 -0
  5. flyte/_bin/serve.py +178 -0
  6. flyte/_build.py +26 -0
  7. flyte/_cache/__init__.py +12 -0
  8. flyte/_cache/cache.py +147 -0
  9. flyte/_cache/defaults.py +9 -0
  10. flyte/_cache/local_cache.py +216 -0
  11. flyte/_cache/policy_function_body.py +42 -0
  12. flyte/_code_bundle/__init__.py +8 -0
  13. flyte/_code_bundle/_ignore.py +121 -0
  14. flyte/_code_bundle/_packaging.py +218 -0
  15. flyte/_code_bundle/_utils.py +347 -0
  16. flyte/_code_bundle/bundle.py +266 -0
  17. flyte/_constants.py +1 -0
  18. flyte/_context.py +155 -0
  19. flyte/_custom_context.py +73 -0
  20. flyte/_debug/__init__.py +0 -0
  21. flyte/_debug/constants.py +38 -0
  22. flyte/_debug/utils.py +17 -0
  23. flyte/_debug/vscode.py +307 -0
  24. flyte/_deploy.py +408 -0
  25. flyte/_deployer.py +109 -0
  26. flyte/_doc.py +29 -0
  27. flyte/_docstring.py +32 -0
  28. flyte/_environment.py +122 -0
  29. flyte/_excepthook.py +37 -0
  30. flyte/_group.py +32 -0
  31. flyte/_hash.py +8 -0
  32. flyte/_image.py +1055 -0
  33. flyte/_initialize.py +628 -0
  34. flyte/_interface.py +119 -0
  35. flyte/_internal/__init__.py +3 -0
  36. flyte/_internal/controllers/__init__.py +129 -0
  37. flyte/_internal/controllers/_local_controller.py +239 -0
  38. flyte/_internal/controllers/_trace.py +48 -0
  39. flyte/_internal/controllers/remote/__init__.py +58 -0
  40. flyte/_internal/controllers/remote/_action.py +211 -0
  41. flyte/_internal/controllers/remote/_client.py +47 -0
  42. flyte/_internal/controllers/remote/_controller.py +583 -0
  43. flyte/_internal/controllers/remote/_core.py +465 -0
  44. flyte/_internal/controllers/remote/_informer.py +381 -0
  45. flyte/_internal/controllers/remote/_service_protocol.py +50 -0
  46. flyte/_internal/imagebuild/__init__.py +3 -0
  47. flyte/_internal/imagebuild/docker_builder.py +706 -0
  48. flyte/_internal/imagebuild/image_builder.py +277 -0
  49. flyte/_internal/imagebuild/remote_builder.py +386 -0
  50. flyte/_internal/imagebuild/utils.py +78 -0
  51. flyte/_internal/resolvers/__init__.py +0 -0
  52. flyte/_internal/resolvers/_task_module.py +21 -0
  53. flyte/_internal/resolvers/common.py +31 -0
  54. flyte/_internal/resolvers/default.py +28 -0
  55. flyte/_internal/runtime/__init__.py +0 -0
  56. flyte/_internal/runtime/convert.py +486 -0
  57. flyte/_internal/runtime/entrypoints.py +204 -0
  58. flyte/_internal/runtime/io.py +188 -0
  59. flyte/_internal/runtime/resources_serde.py +152 -0
  60. flyte/_internal/runtime/reuse.py +125 -0
  61. flyte/_internal/runtime/rusty.py +193 -0
  62. flyte/_internal/runtime/task_serde.py +362 -0
  63. flyte/_internal/runtime/taskrunner.py +209 -0
  64. flyte/_internal/runtime/trigger_serde.py +160 -0
  65. flyte/_internal/runtime/types_serde.py +54 -0
  66. flyte/_keyring/__init__.py +0 -0
  67. flyte/_keyring/file.py +115 -0
  68. flyte/_logging.py +300 -0
  69. flyte/_map.py +312 -0
  70. flyte/_module.py +72 -0
  71. flyte/_pod.py +30 -0
  72. flyte/_resources.py +473 -0
  73. flyte/_retry.py +32 -0
  74. flyte/_reusable_environment.py +102 -0
  75. flyte/_run.py +724 -0
  76. flyte/_secret.py +96 -0
  77. flyte/_task.py +550 -0
  78. flyte/_task_environment.py +316 -0
  79. flyte/_task_plugins.py +47 -0
  80. flyte/_timeout.py +47 -0
  81. flyte/_tools.py +27 -0
  82. flyte/_trace.py +119 -0
  83. flyte/_trigger.py +1000 -0
  84. flyte/_utils/__init__.py +30 -0
  85. flyte/_utils/asyn.py +121 -0
  86. flyte/_utils/async_cache.py +139 -0
  87. flyte/_utils/coro_management.py +27 -0
  88. flyte/_utils/docker_credentials.py +173 -0
  89. flyte/_utils/file_handling.py +72 -0
  90. flyte/_utils/helpers.py +134 -0
  91. flyte/_utils/lazy_module.py +54 -0
  92. flyte/_utils/module_loader.py +104 -0
  93. flyte/_utils/org_discovery.py +57 -0
  94. flyte/_utils/uv_script_parser.py +49 -0
  95. flyte/_version.py +34 -0
  96. flyte/app/__init__.py +22 -0
  97. flyte/app/_app_environment.py +157 -0
  98. flyte/app/_deploy.py +125 -0
  99. flyte/app/_input.py +160 -0
  100. flyte/app/_runtime/__init__.py +3 -0
  101. flyte/app/_runtime/app_serde.py +347 -0
  102. flyte/app/_types.py +101 -0
  103. flyte/app/extras/__init__.py +3 -0
  104. flyte/app/extras/_fastapi.py +151 -0
  105. flyte/cli/__init__.py +12 -0
  106. flyte/cli/_abort.py +28 -0
  107. flyte/cli/_build.py +114 -0
  108. flyte/cli/_common.py +468 -0
  109. flyte/cli/_create.py +371 -0
  110. flyte/cli/_delete.py +45 -0
  111. flyte/cli/_deploy.py +293 -0
  112. flyte/cli/_gen.py +176 -0
  113. flyte/cli/_get.py +370 -0
  114. flyte/cli/_option.py +33 -0
  115. flyte/cli/_params.py +554 -0
  116. flyte/cli/_plugins.py +209 -0
  117. flyte/cli/_run.py +597 -0
  118. flyte/cli/_serve.py +64 -0
  119. flyte/cli/_update.py +37 -0
  120. flyte/cli/_user.py +17 -0
  121. flyte/cli/main.py +221 -0
  122. flyte/config/__init__.py +3 -0
  123. flyte/config/_config.py +248 -0
  124. flyte/config/_internal.py +73 -0
  125. flyte/config/_reader.py +225 -0
  126. flyte/connectors/__init__.py +11 -0
  127. flyte/connectors/_connector.py +270 -0
  128. flyte/connectors/_server.py +197 -0
  129. flyte/connectors/utils.py +135 -0
  130. flyte/errors.py +243 -0
  131. flyte/extend.py +19 -0
  132. flyte/extras/__init__.py +5 -0
  133. flyte/extras/_container.py +286 -0
  134. flyte/git/__init__.py +3 -0
  135. flyte/git/_config.py +21 -0
  136. flyte/io/__init__.py +29 -0
  137. flyte/io/_dataframe/__init__.py +131 -0
  138. flyte/io/_dataframe/basic_dfs.py +223 -0
  139. flyte/io/_dataframe/dataframe.py +1026 -0
  140. flyte/io/_dir.py +910 -0
  141. flyte/io/_file.py +914 -0
  142. flyte/io/_hashing_io.py +342 -0
  143. flyte/models.py +479 -0
  144. flyte/py.typed +0 -0
  145. flyte/remote/__init__.py +35 -0
  146. flyte/remote/_action.py +738 -0
  147. flyte/remote/_app.py +57 -0
  148. flyte/remote/_client/__init__.py +0 -0
  149. flyte/remote/_client/_protocols.py +189 -0
  150. flyte/remote/_client/auth/__init__.py +12 -0
  151. flyte/remote/_client/auth/_auth_utils.py +14 -0
  152. flyte/remote/_client/auth/_authenticators/__init__.py +0 -0
  153. flyte/remote/_client/auth/_authenticators/base.py +403 -0
  154. flyte/remote/_client/auth/_authenticators/client_credentials.py +73 -0
  155. flyte/remote/_client/auth/_authenticators/device_code.py +117 -0
  156. flyte/remote/_client/auth/_authenticators/external_command.py +79 -0
  157. flyte/remote/_client/auth/_authenticators/factory.py +200 -0
  158. flyte/remote/_client/auth/_authenticators/pkce.py +516 -0
  159. flyte/remote/_client/auth/_channel.py +213 -0
  160. flyte/remote/_client/auth/_client_config.py +85 -0
  161. flyte/remote/_client/auth/_default_html.py +32 -0
  162. flyte/remote/_client/auth/_grpc_utils/__init__.py +0 -0
  163. flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py +288 -0
  164. flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py +151 -0
  165. flyte/remote/_client/auth/_keyring.py +152 -0
  166. flyte/remote/_client/auth/_token_client.py +260 -0
  167. flyte/remote/_client/auth/errors.py +16 -0
  168. flyte/remote/_client/controlplane.py +128 -0
  169. flyte/remote/_common.py +30 -0
  170. flyte/remote/_console.py +19 -0
  171. flyte/remote/_data.py +161 -0
  172. flyte/remote/_logs.py +185 -0
  173. flyte/remote/_project.py +88 -0
  174. flyte/remote/_run.py +386 -0
  175. flyte/remote/_secret.py +142 -0
  176. flyte/remote/_task.py +527 -0
  177. flyte/remote/_trigger.py +306 -0
  178. flyte/remote/_user.py +33 -0
  179. flyte/report/__init__.py +3 -0
  180. flyte/report/_report.py +182 -0
  181. flyte/report/_template.html +124 -0
  182. flyte/storage/__init__.py +36 -0
  183. flyte/storage/_config.py +237 -0
  184. flyte/storage/_parallel_reader.py +274 -0
  185. flyte/storage/_remote_fs.py +34 -0
  186. flyte/storage/_storage.py +456 -0
  187. flyte/storage/_utils.py +5 -0
  188. flyte/syncify/__init__.py +56 -0
  189. flyte/syncify/_api.py +375 -0
  190. flyte/types/__init__.py +52 -0
  191. flyte/types/_interface.py +40 -0
  192. flyte/types/_pickle.py +145 -0
  193. flyte/types/_renderer.py +162 -0
  194. flyte/types/_string_literals.py +119 -0
  195. flyte/types/_type_engine.py +2254 -0
  196. flyte/types/_utils.py +80 -0
  197. flyte-2.0.0b32.data/scripts/debug.py +38 -0
  198. flyte-2.0.0b32.data/scripts/runtime.py +195 -0
  199. flyte-2.0.0b32.dist-info/METADATA +351 -0
  200. flyte-2.0.0b32.dist-info/RECORD +204 -0
  201. flyte-2.0.0b32.dist-info/WHEEL +5 -0
  202. flyte-2.0.0b32.dist-info/entry_points.txt +7 -0
  203. flyte-2.0.0b32.dist-info/licenses/LICENSE +201 -0
  204. flyte-2.0.0b32.dist-info/top_level.txt +1 -0
@@ -0,0 +1,204 @@
1
+ flyte/__init__.py,sha256=-YRRHnaJ0jjJz2Xvi-E3sa34mtiNTniWk7zd4d99toU,2641
2
+ flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
3
+ flyte/_constants.py,sha256=QHzughBvzvUc9l0rmcitq9ZCk0NqNRAG1jwtP3cHTMg,89
4
+ flyte/_context.py,sha256=v5JXeI3sEiIICN0eo7rtnMnBdO5GEAoKM10yeL49eJw,5321
5
+ flyte/_custom_context.py,sha256=-jcKWBPXw08w_n4o86huiSVPesOyXYcv-2L8RY2hb54,1791
6
+ flyte/_deploy.py,sha256=hNwenFcN5KLV5lk9IZPLZRx5eWm_q9hrLnKyLqrkyKc,15053
7
+ flyte/_deployer.py,sha256=7TaQoYnHLsL6tKgtIjA7ZNLsZ8q4ckHW1CihC1AWJrM,2703
8
+ flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
9
+ flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
10
+ flyte/_environment.py,sha256=X6Iy0iL7IMXmiTbSUB54StbYZRymntSXiQ9H0OD5EJI,5184
11
+ flyte/_excepthook.py,sha256=0pZ1ZQZSRjDSe2f_CuqAiOccq-KfRXYpnsuhYIs_x90,1293
12
+ flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
13
+ flyte/_hash.py,sha256=KMKjoI7SaxXildb-xv6n5Vb32B0csvBiYc06iUe-BrI,137
14
+ flyte/_image.py,sha256=CeiPrdPNjgWGK_L3tLHiQozSydiWMKzfj34lDu3OFDk,41229
15
+ flyte/_initialize.py,sha256=WF6A5E2Swm5vY-eLFHOuMhUZYey-Xr-D65_CMoYjbcM,23670
16
+ flyte/_interface.py,sha256=hQiN74NF2guU-BAat-yefP-gQ5f4hQSk0OeHUSKUVh0,4910
17
+ flyte/_logging.py,sha256=lkJ9-x4RR6LYvxcf1lLkcLiOiY1DEgEIMTY0ZYCQ-7Y,8871
18
+ flyte/_map.py,sha256=x1wASt3fTuWKaLjE5sABdG9xeHfaUBWvI_RdWy_9jRs,11413
19
+ flyte/_module.py,sha256=DS1AGlnbH7MUrYdNsusRNlU7kpCLQfZPlhZ7SDJi5uk,3015
20
+ flyte/_pod.py,sha256=NtXZ70jJVfp8FGastHGVypfTZiYkoKAtj1IVfUEMiv0,1107
21
+ flyte/_resources.py,sha256=r7cP0DW_Lnh2M2Du9v4ujgcH9av6ocGCOH_5PMMRdrk,13779
22
+ flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
23
+ flyte/_reusable_environment.py,sha256=qzmLJlHFiek8_k3EEqxew3837Pe2xjmz3mjGk_xqPEo,4857
24
+ flyte/_run.py,sha256=kTJrlsAOQx7pU1P9gWdWxyQMP532P5oXDIJ5WXCAyY8,30484
25
+ flyte/_secret.py,sha256=wug5NbIYEkXO6FJkqnPRnPoc2nKDerQiemWtRGRi288,3576
26
+ flyte/_task.py,sha256=V1HhFmhJ7kWVTypRCxvDzQF5DQ8Z5AHWvFQSeq5uDSU,23163
27
+ flyte/_task_environment.py,sha256=gUh50v70nVBov-umT-MIUjgiy6banH3n3ay3tjpQ2OM,13713
28
+ flyte/_task_plugins.py,sha256=4KcdSERpQ0yR9q0CO3H2VC84egaj7r1fqHg8YO2xsFM,1093
29
+ flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
30
+ flyte/_tools.py,sha256=lB3OiJSAhxzSMCYjLUF6nZjlFsmNpaRXtr3_Fefcxbg,747
31
+ flyte/_trace.py,sha256=-BIprs2MbupWl3vsC_Pn33SV3fSVku1rUIsnwfmrIy0,5204
32
+ flyte/_trigger.py,sha256=fsDQv-_j7sw0UTdTjMNdtjRSXuSty8ihijYPi0VTf00,28973
33
+ flyte/_version.py,sha256=UW31pZ7fbnuux8olC4_kaVVEHniMlqZAlB0mW1Py4mE,722
34
+ flyte/errors.py,sha256=L_05C2BAfDSWqmU6hHnJyzkBQDPcLeIiW6oGZl3sQLw,6965
35
+ flyte/extend.py,sha256=L3LxIziMMUBjUfilF2GNx_JNgA7Y1v_DLIxJFa9wC2E,685
36
+ flyte/models.py,sha256=dqpMq_BGi3_VR1zKK1pw8WckNmDT_4rLWCKu_uhY3Nw,18249
37
+ flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ flyte/_bin/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
40
+ flyte/_bin/runtime.py,sha256=G8ffvAJmtvQ7KG1tHIV7tcS1azXQpmGw1oUXsqPnCA4,7050
41
+ flyte/_bin/serve.py,sha256=o14H4M4ZKrmvGK6pY_738XEHjYJAHzCTPUH5L-_egDs,5964
42
+ flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
43
+ flyte/_cache/cache.py,sha256=WmvpvXCzI1leXyjOmG0n4G53BoMy9lI-9Q7WoU0r7RU,5124
44
+ flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
45
+ flyte/_cache/local_cache.py,sha256=czSjM8vpchNxIiuspUH1b_gz_pEBiYT3RkoaA8DppNQ,7044
46
+ flyte/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
47
+ flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
48
+ flyte/_code_bundle/_ignore.py,sha256=DCw2L_krKRmho7cwLZrrSyAEB1st5tSxHXNKU690S7Q,4137
49
+ flyte/_code_bundle/_packaging.py,sha256=DeWrgrKTzo-XPuXS9_Kbx11R1zQ92YmCnUd_tsBszmI,7952
50
+ flyte/_code_bundle/_utils.py,sha256=nHYu5-6AOts8-HjDnuQAvh8uffsVWNRzKvU7xKje3U0,13081
51
+ flyte/_code_bundle/bundle.py,sha256=LoKWnxELW-NU_nkt-BdXBhkVKi4zCMjtfivPPSLL4D4,11354
52
+ flyte/_debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ flyte/_debug/constants.py,sha256=tI4410tMsCGdgsrCCdk28RAWu6lyTQs7yRvzrRoR1HY,1516
54
+ flyte/_debug/utils.py,sha256=Nc6n1Y_OdLMa4VtvigP6U738D4Fpbuog94g37tPwu6k,596
55
+ flyte/_debug/vscode.py,sha256=XsrXegavYfH52Vr4jYqbLsMQFQKo8cF5DpFpzEGz61I,11298
56
+ flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
57
+ flyte/_internal/controllers/__init__.py,sha256=yNALzu-3YVii_D_GlrBoWUpL4PTLYUa7oIKnA7hbee0,4296
58
+ flyte/_internal/controllers/_local_controller.py,sha256=-W1Mmfx7yhRcjLbm49HfquzDM8taW-NjQon46_Gq5VU,9133
59
+ flyte/_internal/controllers/_trace.py,sha256=WE0DnB9ID0gMw_o-m3JXOhIg-PVrRHqVACKvsemOvSc,1500
60
+ flyte/_internal/controllers/remote/__init__.py,sha256=EkDZ4gpp715M5CMnwpFh9s04jkWowndF9RqhXJ34yRA,1869
61
+ flyte/_internal/controllers/remote/_action.py,sha256=x9ssw_jmU1kO0ZVLrH1Cbp1ZZCLOQfoa2G33uPBJ01g,7452
62
+ flyte/_internal/controllers/remote/_client.py,sha256=_qtnkKCmWIPslu1LUNXOMf_hc6fAfHnvlqFoKUIeihU,1417
63
+ flyte/_internal/controllers/remote/_controller.py,sha256=O2ZxDe-5ZgnLck-j5yhlvzNaAONMkXxvbnfRZZUaous,25336
64
+ flyte/_internal/controllers/remote/_core.py,sha256=3MuiFY-RFhn1WPvINNN9DYVGsmEkL9YgvSVmiRb4GZc,20912
65
+ flyte/_internal/controllers/remote/_informer.py,sha256=m47lZVaYA8nrLVVZ8AIyFJDnNCtw3ahlNyq93IBM1h8,14954
66
+ flyte/_internal/controllers/remote/_service_protocol.py,sha256=c8bBVsKNb84Q7Q50_ttZMf1zKadDP6Z8Qyw3LPfCf-A,1350
67
+ flyte/_internal/imagebuild/__init__.py,sha256=dwXdJ1jMhw9RF8itF7jkPLanvX1yCviSns7hE5eoIts,102
68
+ flyte/_internal/imagebuild/docker_builder.py,sha256=OI-yGsAjYmYDpHwuyz4DbwHGIOBGFN42sm1We_YE1XU,26260
69
+ flyte/_internal/imagebuild/image_builder.py,sha256=FRbeoFFjGLgRybyhN3RLikmxSWQ7giTDKurHisUhFHE,10944
70
+ flyte/_internal/imagebuild/remote_builder.py,sha256=JKymajJ9EYK4vtUG619obi3XEyFdZx3DiA_1SwJ5ZUw,15905
71
+ flyte/_internal/imagebuild/utils.py,sha256=PpWmrdt8n4RHbI4iK7afTQcyS7tsCc1-geSh9Az3c9w,3311
72
+ flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ flyte/_internal/resolvers/_task_module.py,sha256=lGX0-83IqAq8Fq4CzoGbB3pAu6GIUU26CzWaI_xSg_U,807
74
+ flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
75
+ flyte/_internal/resolvers/default.py,sha256=NL1jxTL9fUctUhwUXu3PpP2-7sGAblqf51d6FdnMqdw,954
76
+ flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ flyte/_internal/runtime/convert.py,sha256=Ho5AN-i1NyvhNqHx1rU8n9DaFnQ8nd4mHnTHF4Yql1c,19698
78
+ flyte/_internal/runtime/entrypoints.py,sha256=AYG95URIAOx2dIbSg76aBGps008p9lGpTJ8GCuySdg4,7694
79
+ flyte/_internal/runtime/io.py,sha256=Z5UFkR5QRTlo1gGvU8_SKthWp2FRbDTvsxB1rtLyaa0,6603
80
+ flyte/_internal/runtime/resources_serde.py,sha256=pZd9r8JDm3byyoa9GG-sl1eiPAkKiNlANQMZae3IKrg,5367
81
+ flyte/_internal/runtime/reuse.py,sha256=Z7TU-H4hdWUfD2rMl8iU1pljKLEEvB2YKZPEdQonjvs,4902
82
+ flyte/_internal/runtime/rusty.py,sha256=wnZMTQp4tOr73bseMmTy5irhZ8_XwifkZ4QlXhkfDBQ,7277
83
+ flyte/_internal/runtime/task_serde.py,sha256=kmpfAINEonL-_LWpM6wD7jY0ZG6PgD8ffKxnNESFgnc,14910
84
+ flyte/_internal/runtime/taskrunner.py,sha256=XXKWaCd1kGaaCXTKxEOVkPVq3hX62-qjV3eY4Ru_fkY,7894
85
+ flyte/_internal/runtime/trigger_serde.py,sha256=8oem0QJNrqA9fKjQZcn-SBbxQI-ey3QE5vK3j8ryJX4,5388
86
+ flyte/_internal/runtime/types_serde.py,sha256=gVUKagPBoQ3Yukce_0DSbiwtyXJGqbwa-0p2zTNDSPc,1814
87
+ flyte/_keyring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ flyte/_keyring/file.py,sha256=DPfaNT1Gs5_j1oFfZaGU_myWw8lMagUSeF1kMvnbLVw,4172
89
+ flyte/_utils/__init__.py,sha256=11M7T0yiXHKfAeCXfII3RBwW1cWB-tXoygdEYRH5_Xs,897
90
+ flyte/_utils/asyn.py,sha256=TrwAhvt2Jqvfh3ArBnzXi_YLOtHle5D5QzV-AvC6XHI,3728
91
+ flyte/_utils/async_cache.py,sha256=JtZJmWO62OowJ0QFNl6wryWqh-kuDi76aAASMie87QY,4596
92
+ flyte/_utils/coro_management.py,sha256=2XPC1UznYDwJB9_BXMSUjsJmbksiW1JKIU3fNmBWMCI,1030
93
+ flyte/_utils/docker_credentials.py,sha256=mCWfBJuKAFHjdzWK8pFtB_OcdqauJW_1BC-fKNijbys,6049
94
+ flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
95
+ flyte/_utils/helpers.py,sha256=9N70yzfLF4lLGEEdOv5OcweEpYtrCvZqqhtzkjZUXNY,4779
96
+ flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
97
+ flyte/_utils/module_loader.py,sha256=lGnPfbxXAeBi5ev5mjSESRrtklAPDEmoDZXNk4VusI8,3654
98
+ flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94,2088
99
+ flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
100
+ flyte/app/__init__.py,sha256=mh8wkoTt4nA0SPbcHBQY5bx613ZD1poZhfzBMbmhx_o,465
101
+ flyte/app/_app_environment.py,sha256=cTWwEwVF-Ujl9jPNQxzR8ACsY24Sk6iJOwoemgw9S9Q,6391
102
+ flyte/app/_deploy.py,sha256=aQn-xnB-ofVlTLZgyCEena89RUGjXoJFMEZvPpa5a_s,4806
103
+ flyte/app/_input.py,sha256=_5ZJ2T4WiggXEBHgGktBchUXWV3FAfiPOdcfd24q_s0,4719
104
+ flyte/app/_types.py,sha256=UAFvPR8diN7_hWaRchR4TucpAt6tR5rZTpwJyjGjO6Q,3320
105
+ flyte/app/_runtime/__init__.py,sha256=HYwXMg5xp6VRsilud5UEzkFwllxFWDkzAk5qdQumHqk,88
106
+ flyte/app/_runtime/app_serde.py,sha256=UnEA3MLguh8c-ZkRuoDG4m3uVsak7JuScb0eVpdCFg8,11521
107
+ flyte/app/extras/__init__.py,sha256=Logrn-AO7Rcs3lYDEHriZbW0EWglimGzCmM_b_VMj4g,81
108
+ flyte/app/extras/_fastapi.py,sha256=6jWW7NtXv6DvJXUESDx6x6K09AS2qHxcmt-PrZEB5iA,6215
109
+ flyte/cli/__init__.py,sha256=aeCcumeP9xD_5aCmaRYUPCe2QRJSGCaxcUbTZ3co768,341
110
+ flyte/cli/_abort.py,sha256=drOg1EyQq0jZP9IpUS4hnqqhKHpml0yGiLH5t3Dg6q4,721
111
+ flyte/cli/_build.py,sha256=R0cgC-C55pdHI73sGxEOjzptcL4gmUmRf7ZmCPr3hdk,3503
112
+ flyte/cli/_common.py,sha256=eohe7aG0OUEhKKilQLKNhMOHYpvtZPyl_oJaaRvM_pc,15661
113
+ flyte/cli/_create.py,sha256=k5q2uSVQ_MoLtLH42XlvjDlGnecLiWA_Bad06Eau0Eo,11776
114
+ flyte/cli/_delete.py,sha256=FErGR5z-1Sbl8JqeSKWFlMnGFJfNcJ2-lAyd_ZLZxdY,1339
115
+ flyte/cli/_deploy.py,sha256=nMU6LHxWxU1mMLPKFneK-ipbuv35XRvlTQhkV0hU3ok,10526
116
+ flyte/cli/_gen.py,sha256=7K2eYQLGVr26I2OC3Xe_bzAn4ANYA5mPlBW5m1476PM,6079
117
+ flyte/cli/_get.py,sha256=g53ThkT7qWgWPaxyr-0-WBOKs7vcOtlAjO4INBuSuFc,12136
118
+ flyte/cli/_option.py,sha256=oC1Gs0u0UrOC1SsrFo-iCuAkqQvI1wJWCdjYXA9rW4Q,1445
119
+ flyte/cli/_params.py,sha256=ZCyd714-CKXAzIL3tb3zfheTYpV0aqZFT3YEL3voS4w,20051
120
+ flyte/cli/_plugins.py,sha256=j_17iJXaeGFagDf31cGGbf7VKHCRGNUAAjI7g5FoXgs,8021
121
+ flyte/cli/_run.py,sha256=r6undnhVwEv-U7TvY83Mrab3NzMypnsu7hP7emzB2iQ,20689
122
+ flyte/cli/_serve.py,sha256=ZvDPq5NDkeyvVXxRWt1gKWRlbjRsTIvrQtUAMiHrmUE,1382
123
+ flyte/cli/_update.py,sha256=oEG5hEe1xML6e8Q8k74ejdPjrMZd8b1trjqKNcFLLV0,1115
124
+ flyte/cli/_user.py,sha256=x32vEXpJkV6ONoCCcq7DbCIltHcALcSvm3PalNI57kI,339
125
+ flyte/cli/main.py,sha256=3eSS_Bpz9AWKoGIN-wwP1ZXo2dQVABZ3hKaL7Y3kV28,6267
126
+ flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
127
+ flyte/config/_config.py,sha256=IPfKboFar4CELhdJf583R10gG0PIhzUl1YAAP0ccObc,11109
128
+ flyte/config/_internal.py,sha256=cmRtr6JeIkSfGgw9gloDkTuGpFNdwoUbnBJgbmAhPUE,3055
129
+ flyte/config/_reader.py,sha256=RRGaPkFqDn4b5-xRfiDPvmT78WQtEzUc4N7FPIhEN_0,7707
130
+ flyte/connectors/__init__.py,sha256=LEKk8cl4Z0rL_ibu4TOhB3WJZKDwujNcVQ8SX4tD0MA,306
131
+ flyte/connectors/_connector.py,sha256=K71B2QgOuTFOKXaONb5MIBGG4ahJ-3taJHgXr8717Rk,9863
132
+ flyte/connectors/_server.py,sha256=Fn2zilcq6i3sRyzDXQAj4L6eDwA9MeYZXJzfFl2teaI,8541
133
+ flyte/connectors/utils.py,sha256=5vlvN8O-0I2V7uljdJfR_I82lR8RIQXpcNmApUwp00Y,4583
134
+ flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
135
+ flyte/extras/_container.py,sha256=-JFOPgZu9R1wa4pzvbV4_Gz9MxI2ME6A_2V94dpsHDQ,12128
136
+ flyte/git/__init__.py,sha256=OYDrwq1mZ70xC4QC205s1seFvdk9fjDPSv8DrbopdC8,70
137
+ flyte/git/_config.py,sha256=8PRzAExg8M01cLfRcriwrHT40gky-AQoQiDNjPjiaoc,711
138
+ flyte/io/__init__.py,sha256=42zlMAZwfyvuc1plg4LT9l53y-2HJ4DGThW3h-jmAhk,566
139
+ flyte/io/_dir.py,sha256=l-EFpnP47gt6Y3jeM_beQOpJMPNpBqxVjzdGV9YaYr0,31489
140
+ flyte/io/_file.py,sha256=flvidLz6vbkJLYtBrbOWKnjA6ki2VQHvNmsxHvc9Bxo,33570
141
+ flyte/io/_hashing_io.py,sha256=QvhQ4K5jiHgzzPqZY4gFz5Fm-BAzq6bzyCpzXhfnWlk,10014
142
+ flyte/io/_dataframe/__init__.py,sha256=bbc72MKlwwlUXZO2Hc1jmaXtzSx-TE6aIJ3kzYupyoo,4311
143
+ flyte/io/_dataframe/basic_dfs.py,sha256=u-TlWNuKm3bqFp7w4zZWg3QWvUKnks5Gvx0-UsThZN8,8044
144
+ flyte/io/_dataframe/dataframe.py,sha256=ab4f8zrembIMyQSUohKgL5MFtcei0kAuEJjHJpWIAdI,49537
145
+ flyte/remote/__init__.py,sha256=qNaP56wAawkWrXUQTipXpEA6vHcirrKrXxerN4qZ7p8,783
146
+ flyte/remote/_action.py,sha256=qJCINAzNjW2uanFllpB6NOTaCOf1jKNr-hrtrrUPnRQ,24333
147
+ flyte/remote/_app.py,sha256=sum87UkcHjzep6IBUjm9aU8rsvhcoAnu7AZ40aJADOs,1488
148
+ flyte/remote/_common.py,sha256=2XLLxWL1NjwfdPQUhOfYn3zMrg-yGNfi6NYIaqHutUA,862
149
+ flyte/remote/_console.py,sha256=9pP_nFFG2OxU_2WkgOhEdFZUMtWhz_opxrUvS9W_uf0,729
150
+ flyte/remote/_data.py,sha256=u74dhiqgcFhlSfsTEkibW6cgfdYTLqoNXTet1P-wQZo,6206
151
+ flyte/remote/_logs.py,sha256=DB4dk4YxCeoaFVilDXLREJ0gnU27TDo7kQ-I6cH-eUk,6699
152
+ flyte/remote/_project.py,sha256=IbkxKRAvZunKLIwpmcreA4O-0GxWC0KPC62WSYvsK34,2868
153
+ flyte/remote/_run.py,sha256=lFoWp1vn-keruKqBLSwxMdRtydXF1TMmL0BRbvNfHHM,12210
154
+ flyte/remote/_secret.py,sha256=9dK-MN7xH0vFOwY4g_yZ_sSQSiossilDFxIct5zbOFY,4823
155
+ flyte/remote/_task.py,sha256=_SoAR-b4yBIfjX2ZISNNH8nZ2q6goLW3viLediYKBSA,19293
156
+ flyte/remote/_trigger.py,sha256=UCxiARcuxBUaUtehyHOl5ttWvYMV3-Qv-Kx-t82-alo,9978
157
+ flyte/remote/_user.py,sha256=Fcy2oKep-BAGcqRQUdEi-K6Bu2I2YtECJviGDrzoY7Q,831
158
+ flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
+ flyte/remote/_client/_protocols.py,sha256=tut_DRUkgaKUXnQvKf-R0jYxMnMD2FQeZygz4Bmhmv4,7929
160
+ flyte/remote/_client/controlplane.py,sha256=8hbaKIhepb_gkBUfr4-SiH20upZFghB4P1gSS1YO5wI,4299
161
+ flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
162
+ flyte/remote/_client/auth/_auth_utils.py,sha256=Is6mr18J8AMQlbtu-Q63aMJgrZ27dXXNSig8KshR1_8,545
163
+ flyte/remote/_client/auth/_channel.py,sha256=SHtk8PoBkKx9yBfFTBH88Jvuj4t2uWzzfZwVBsNhgUA,9401
164
+ flyte/remote/_client/auth/_client_config.py,sha256=LhJpznsibAQkVx0emOhBSrfXjis7WkoL695WXHZAJMo,3435
165
+ flyte/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
166
+ flyte/remote/_client/auth/_keyring.py,sha256=hJ2FxFdi5_FaKLcuqhelxj6Hc1WYQrez4c47qSl5c5A,5681
167
+ flyte/remote/_client/auth/_token_client.py,sha256=FxFaG_DcynQIZfEdAuJUsrcy0OnYbEr4gKLpu8WZHJo,10460
168
+ flyte/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
169
+ flyte/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ flyte/remote/_client/auth/_authenticators/base.py,sha256=LIIYt46j6_ShJRiwjNwNX-LxLiUoG1qbiN0ypyzGedY,17020
171
+ flyte/remote/_client/auth/_authenticators/client_credentials.py,sha256=e9DOFdKEvaM3uSR10lnNuJaOwAcCkZQWZPKv7xUoFsI,3483
172
+ flyte/remote/_client/auth/_authenticators/device_code.py,sha256=YKj0HLT2Gegoc8_mKEOgVRUw_Bp9EtDeTUAvmc3IoMY,4806
173
+ flyte/remote/_client/auth/_authenticators/external_command.py,sha256=IfTJQACPd1xc6htZYC-HdMIx6Q9JHBPw1HUG1Pv6lXg,3838
174
+ flyte/remote/_client/auth/_authenticators/factory.py,sha256=_oBWs7xIG6l13q06V2PUGIDmzU9-XYUK5hx5S6gZjrU,10291
175
+ flyte/remote/_client/auth/_authenticators/pkce.py,sha256=PXbYCmgYGn_LP2EED1O41uzeV4I7L03M1-u3CMRag_M,23097
176
+ flyte/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
+ flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=JCjdoWV41sjdvfJcUmrJdIfQ0meuGFwv2ArU7FQGDDA,12403
178
+ flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=IoMGWM42_VyzxqIVYe458o0uKsqhH-mcERUs9CY1L5U,6194
179
+ flyte/report/__init__.py,sha256=yLbeUxYaVaDlgBod3Oh34zGBSotl1UlXq1vUkb9q7cs,152
180
+ flyte/report/_report.py,sha256=b-VMFke-5SitqGfNEXKTm0PuEPzonWpvlAl5V3wSh4o,5328
181
+ flyte/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
182
+ flyte/storage/__init__.py,sha256=Lvss5m16YAxEb_NX73VsSv0LdXzsRpJ0iRwucu1PvfQ,635
183
+ flyte/storage/_config.py,sha256=Pl4i5KSkUJA_4HqDdvQlPn1OxFmVWIxl1bw0tp0mDGM,8871
184
+ flyte/storage/_parallel_reader.py,sha256=vUsPFscw8DykIrWDKh23X-x2gLwp2LUKBsbFhjUEurk,9539
185
+ flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
186
+ flyte/storage/_storage.py,sha256=uymPfSk3SgBhm3V2a2P6Djd7Nk9ubiJgD8ReTqu8FAQ,16673
187
+ flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
188
+ flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
189
+ flyte/syncify/_api.py,sha256=k4LQB8odJb5Fx2dabL340g0Tq1bKfSG_ZHsV5qRodE0,14858
190
+ flyte/types/__init__.py,sha256=Pt9BmwAPuxGuvrIvpFj3N04tXAp1V3m8bDyJfwoUcT0,2230
191
+ flyte/types/_interface.py,sha256=jBKq7-IRGpkZRwrP4Ex3pDkyN3BmVehP6xlrrkMqOag,1670
192
+ flyte/types/_pickle.py,sha256=qap9ufbudVCPZLAZXu_rDt7KlwOpKwEqxlnjfLf9Nx0,5241
193
+ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
194
+ flyte/types/_string_literals.py,sha256=Tg14opnmkB7MvfNyUACbcPAeph6vg88aW5yC_G9kPIA,4167
195
+ flyte/types/_type_engine.py,sha256=997leiWW55t8rWbYLnif9hGrgVP2tzpSMfOoF_MSPvg,96036
196
+ flyte/types/_utils.py,sha256=-4M__ImscXMqsySaKDrCBJA-xX-c1-Vbc0_zPVoGRyc,2627
197
+ flyte-2.0.0b32.data/scripts/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
198
+ flyte-2.0.0b32.data/scripts/runtime.py,sha256=G8ffvAJmtvQ7KG1tHIV7tcS1azXQpmGw1oUXsqPnCA4,7050
199
+ flyte-2.0.0b32.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
200
+ flyte-2.0.0b32.dist-info/METADATA,sha256=iIlKNmGm0ib5EBWTDSRPXCJ4bnad-fSyTtl-49kClM8,10345
201
+ flyte-2.0.0b32.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
202
+ flyte-2.0.0b32.dist-info/entry_points.txt,sha256=QSd8cVxB65mvY5cSJccz0hQlUHUARTULprqQevoXETw,167
203
+ flyte-2.0.0b32.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
204
+ flyte-2.0.0b32.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,7 @@
1
+ [console_scripts]
2
+ a0 = flyte._bin.runtime:main
3
+ flyte = flyte.cli.main:main
4
+ fserve = flyte._bin.serve:main
5
+
6
+ [keyring.backends]
7
+ flyte_keyring_file = flyte._keyring.file
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1 @@
1
+ flyte