nextmv 0.40.0__tar.gz → 1.0.0__tar.gz

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 (241) hide show
  1. {nextmv-0.40.0 → nextmv-1.0.0}/.gitignore +0 -1
  2. {nextmv-0.40.0 → nextmv-1.0.0}/PKG-INFO +37 -11
  3. {nextmv-0.40.0 → nextmv-1.0.0}/README.md +32 -7
  4. nextmv-1.0.0/nextmv/__about__.py +1 -0
  5. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/__entrypoint__.py +1 -2
  6. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/__init__.py +2 -4
  7. nextmv-1.0.0/nextmv/cli/CONTRIBUTING.md +583 -0
  8. nextmv-1.0.0/nextmv/cli/cloud/__init__.py +49 -0
  9. nextmv-1.0.0/nextmv/cli/cloud/acceptance/__init__.py +27 -0
  10. nextmv-1.0.0/nextmv/cli/cloud/acceptance/create.py +391 -0
  11. nextmv-1.0.0/nextmv/cli/cloud/acceptance/delete.py +64 -0
  12. nextmv-1.0.0/nextmv/cli/cloud/acceptance/get.py +103 -0
  13. nextmv-1.0.0/nextmv/cli/cloud/acceptance/list.py +62 -0
  14. nextmv-1.0.0/nextmv/cli/cloud/acceptance/update.py +95 -0
  15. nextmv-1.0.0/nextmv/cli/cloud/account/__init__.py +28 -0
  16. nextmv-1.0.0/nextmv/cli/cloud/account/create.py +83 -0
  17. nextmv-1.0.0/nextmv/cli/cloud/account/delete.py +59 -0
  18. nextmv-1.0.0/nextmv/cli/cloud/account/get.py +66 -0
  19. nextmv-1.0.0/nextmv/cli/cloud/account/update.py +70 -0
  20. nextmv-1.0.0/nextmv/cli/cloud/app/__init__.py +35 -0
  21. nextmv-1.0.0/nextmv/cli/cloud/app/create.py +140 -0
  22. nextmv-1.0.0/nextmv/cli/cloud/app/delete.py +57 -0
  23. nextmv-1.0.0/nextmv/cli/cloud/app/exists.py +44 -0
  24. nextmv-1.0.0/nextmv/cli/cloud/app/get.py +66 -0
  25. nextmv-1.0.0/nextmv/cli/cloud/app/list.py +61 -0
  26. nextmv-1.0.0/nextmv/cli/cloud/app/push.py +432 -0
  27. nextmv-1.0.0/nextmv/cli/cloud/app/update.py +124 -0
  28. nextmv-1.0.0/nextmv/cli/cloud/batch/__init__.py +29 -0
  29. nextmv-1.0.0/nextmv/cli/cloud/batch/create.py +452 -0
  30. nextmv-1.0.0/nextmv/cli/cloud/batch/delete.py +64 -0
  31. nextmv-1.0.0/nextmv/cli/cloud/batch/get.py +104 -0
  32. nextmv-1.0.0/nextmv/cli/cloud/batch/list.py +63 -0
  33. nextmv-1.0.0/nextmv/cli/cloud/batch/metadata.py +66 -0
  34. nextmv-1.0.0/nextmv/cli/cloud/batch/update.py +95 -0
  35. nextmv-1.0.0/nextmv/cli/cloud/data/__init__.py +26 -0
  36. nextmv-1.0.0/nextmv/cli/cloud/data/upload.py +162 -0
  37. nextmv-1.0.0/nextmv/cli/cloud/ensemble/__init__.py +33 -0
  38. nextmv-1.0.0/nextmv/cli/cloud/ensemble/create.py +413 -0
  39. nextmv-1.0.0/nextmv/cli/cloud/ensemble/delete.py +63 -0
  40. nextmv-1.0.0/nextmv/cli/cloud/ensemble/get.py +65 -0
  41. nextmv-1.0.0/nextmv/cli/cloud/ensemble/list.py +63 -0
  42. nextmv-1.0.0/nextmv/cli/cloud/ensemble/update.py +103 -0
  43. nextmv-1.0.0/nextmv/cli/cloud/input_set/__init__.py +32 -0
  44. nextmv-1.0.0/nextmv/cli/cloud/input_set/create.py +168 -0
  45. nextmv-1.0.0/nextmv/cli/cloud/input_set/delete.py +64 -0
  46. nextmv-1.0.0/nextmv/cli/cloud/input_set/get.py +63 -0
  47. nextmv-1.0.0/nextmv/cli/cloud/input_set/list.py +63 -0
  48. nextmv-1.0.0/nextmv/cli/cloud/input_set/update.py +123 -0
  49. nextmv-1.0.0/nextmv/cli/cloud/instance/__init__.py +35 -0
  50. nextmv-1.0.0/nextmv/cli/cloud/instance/create.py +289 -0
  51. nextmv-1.0.0/nextmv/cli/cloud/instance/delete.py +61 -0
  52. nextmv-1.0.0/nextmv/cli/cloud/instance/exists.py +39 -0
  53. nextmv-1.0.0/nextmv/cli/cloud/instance/get.py +62 -0
  54. nextmv-1.0.0/nextmv/cli/cloud/instance/list.py +60 -0
  55. nextmv-1.0.0/nextmv/cli/cloud/instance/update.py +216 -0
  56. nextmv-1.0.0/nextmv/cli/cloud/managed_input/__init__.py +31 -0
  57. nextmv-1.0.0/nextmv/cli/cloud/managed_input/create.py +144 -0
  58. nextmv-1.0.0/nextmv/cli/cloud/managed_input/delete.py +64 -0
  59. nextmv-1.0.0/nextmv/cli/cloud/managed_input/get.py +63 -0
  60. nextmv-1.0.0/nextmv/cli/cloud/managed_input/list.py +60 -0
  61. nextmv-1.0.0/nextmv/cli/cloud/managed_input/update.py +97 -0
  62. nextmv-1.0.0/nextmv/cli/cloud/run/__init__.py +37 -0
  63. nextmv-1.0.0/nextmv/cli/cloud/run/cancel.py +37 -0
  64. nextmv-1.0.0/nextmv/cli/cloud/run/create.py +524 -0
  65. nextmv-1.0.0/nextmv/cli/cloud/run/get.py +199 -0
  66. nextmv-1.0.0/nextmv/cli/cloud/run/input.py +86 -0
  67. nextmv-1.0.0/nextmv/cli/cloud/run/list.py +80 -0
  68. nextmv-1.0.0/nextmv/cli/cloud/run/logs.py +166 -0
  69. nextmv-1.0.0/nextmv/cli/cloud/run/metadata.py +67 -0
  70. nextmv-1.0.0/nextmv/cli/cloud/run/track.py +500 -0
  71. nextmv-1.0.0/nextmv/cli/cloud/scenario/__init__.py +29 -0
  72. nextmv-1.0.0/nextmv/cli/cloud/scenario/create.py +451 -0
  73. nextmv-1.0.0/nextmv/cli/cloud/scenario/delete.py +61 -0
  74. nextmv-1.0.0/nextmv/cli/cloud/scenario/get.py +102 -0
  75. nextmv-1.0.0/nextmv/cli/cloud/scenario/list.py +63 -0
  76. nextmv-1.0.0/nextmv/cli/cloud/scenario/metadata.py +67 -0
  77. nextmv-1.0.0/nextmv/cli/cloud/scenario/update.py +93 -0
  78. nextmv-1.0.0/nextmv/cli/cloud/secrets/__init__.py +33 -0
  79. nextmv-1.0.0/nextmv/cli/cloud/secrets/create.py +206 -0
  80. nextmv-1.0.0/nextmv/cli/cloud/secrets/delete.py +63 -0
  81. nextmv-1.0.0/nextmv/cli/cloud/secrets/get.py +66 -0
  82. nextmv-1.0.0/nextmv/cli/cloud/secrets/list.py +60 -0
  83. nextmv-1.0.0/nextmv/cli/cloud/secrets/update.py +144 -0
  84. nextmv-1.0.0/nextmv/cli/cloud/shadow/__init__.py +33 -0
  85. nextmv-1.0.0/nextmv/cli/cloud/shadow/create.py +184 -0
  86. nextmv-1.0.0/nextmv/cli/cloud/shadow/delete.py +64 -0
  87. nextmv-1.0.0/nextmv/cli/cloud/shadow/get.py +61 -0
  88. nextmv-1.0.0/nextmv/cli/cloud/shadow/list.py +63 -0
  89. nextmv-1.0.0/nextmv/cli/cloud/shadow/metadata.py +66 -0
  90. nextmv-1.0.0/nextmv/cli/cloud/shadow/start.py +43 -0
  91. nextmv-1.0.0/nextmv/cli/cloud/shadow/stop.py +53 -0
  92. nextmv-1.0.0/nextmv/cli/cloud/shadow/update.py +96 -0
  93. nextmv-1.0.0/nextmv/cli/cloud/switchback/__init__.py +33 -0
  94. nextmv-1.0.0/nextmv/cli/cloud/switchback/create.py +151 -0
  95. nextmv-1.0.0/nextmv/cli/cloud/switchback/delete.py +64 -0
  96. nextmv-1.0.0/nextmv/cli/cloud/switchback/get.py +62 -0
  97. nextmv-1.0.0/nextmv/cli/cloud/switchback/list.py +63 -0
  98. nextmv-1.0.0/nextmv/cli/cloud/switchback/metadata.py +68 -0
  99. nextmv-1.0.0/nextmv/cli/cloud/switchback/start.py +43 -0
  100. nextmv-1.0.0/nextmv/cli/cloud/switchback/stop.py +53 -0
  101. nextmv-1.0.0/nextmv/cli/cloud/switchback/update.py +96 -0
  102. nextmv-1.0.0/nextmv/cli/cloud/upload/__init__.py +22 -0
  103. nextmv-1.0.0/nextmv/cli/cloud/upload/create.py +39 -0
  104. nextmv-1.0.0/nextmv/cli/cloud/version/__init__.py +33 -0
  105. nextmv-1.0.0/nextmv/cli/cloud/version/create.py +96 -0
  106. nextmv-1.0.0/nextmv/cli/cloud/version/delete.py +61 -0
  107. nextmv-1.0.0/nextmv/cli/cloud/version/exists.py +39 -0
  108. nextmv-1.0.0/nextmv/cli/cloud/version/get.py +62 -0
  109. nextmv-1.0.0/nextmv/cli/cloud/version/list.py +60 -0
  110. nextmv-1.0.0/nextmv/cli/cloud/version/update.py +92 -0
  111. nextmv-1.0.0/nextmv/cli/community/clone.py +86 -0
  112. nextmv-1.0.0/nextmv/cli/community/list.py +200 -0
  113. nextmv-1.0.0/nextmv/cli/configuration/config.py +228 -0
  114. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/configuration/create.py +17 -18
  115. nextmv-1.0.0/nextmv/cli/configuration/delete.py +67 -0
  116. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/configuration/list.py +4 -4
  117. nextmv-1.0.0/nextmv/cli/confirm.py +34 -0
  118. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/main.py +68 -36
  119. nextmv-1.0.0/nextmv/cli/message.py +170 -0
  120. nextmv-1.0.0/nextmv/cli/options.py +220 -0
  121. nextmv-1.0.0/nextmv/cli/version.py +38 -0
  122. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/__init__.py +17 -38
  123. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/acceptance_test.py +20 -83
  124. nextmv-1.0.0/nextmv/cloud/account.py +452 -0
  125. nextmv-1.0.0/nextmv/cloud/application/__init__.py +898 -0
  126. nextmv-1.0.0/nextmv/cloud/application/_acceptance.py +424 -0
  127. nextmv-1.0.0/nextmv/cloud/application/_batch_scenario.py +845 -0
  128. nextmv-1.0.0/nextmv/cloud/application/_ensemble.py +251 -0
  129. nextmv-1.0.0/nextmv/cloud/application/_input_set.py +263 -0
  130. nextmv-1.0.0/nextmv/cloud/application/_instance.py +289 -0
  131. nextmv-1.0.0/nextmv/cloud/application/_managed_input.py +227 -0
  132. nextmv-1.0.0/nextmv/cloud/application/_run.py +1393 -0
  133. nextmv-1.0.0/nextmv/cloud/application/_secrets.py +294 -0
  134. nextmv-1.0.0/nextmv/cloud/application/_shadow.py +320 -0
  135. nextmv-1.0.0/nextmv/cloud/application/_switchback.py +332 -0
  136. nextmv-1.0.0/nextmv/cloud/application/_utils.py +54 -0
  137. nextmv-1.0.0/nextmv/cloud/application/_version.py +304 -0
  138. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/batch_experiment.py +6 -2
  139. nextmv-1.0.0/nextmv/cloud/community.py +446 -0
  140. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/instance.py +11 -1
  141. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/integration.py +8 -5
  142. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/package.py +50 -9
  143. nextmv-1.0.0/nextmv/cloud/shadow.py +254 -0
  144. nextmv-1.0.0/nextmv/cloud/switchback.py +228 -0
  145. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/deprecated.py +5 -3
  146. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/input.py +20 -88
  147. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/application.py +3 -15
  148. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/runner.py +1 -1
  149. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/model.py +50 -11
  150. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/options.py +11 -256
  151. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/output.py +0 -62
  152. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/polling.py +54 -16
  153. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/run.py +84 -37
  154. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/status.py +1 -51
  155. {nextmv-0.40.0 → nextmv-1.0.0}/pyproject.toml +6 -8
  156. nextmv-1.0.0/tests/README.md +91 -0
  157. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cli/test_configuration.py +10 -39
  158. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cli/test_main.py +0 -31
  159. nextmv-1.0.0/tests/integration/cloud/test_integration_cloud.py +790 -0
  160. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_entrypoint/test_entrypoint.py +15 -13
  161. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_input.py +0 -47
  162. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_options.py +1 -252
  163. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_run.py +2 -13
  164. nextmv-0.40.0/nextmv/__about__.py +0 -1
  165. nextmv-0.40.0/nextmv/cli/community/clone.py +0 -270
  166. nextmv-0.40.0/nextmv/cli/community/list.py +0 -265
  167. nextmv-0.40.0/nextmv/cli/configuration/config.py +0 -131
  168. nextmv-0.40.0/nextmv/cli/configuration/delete.py +0 -55
  169. nextmv-0.40.0/nextmv/cli/error.py +0 -22
  170. nextmv-0.40.0/nextmv/cli/options.py +0 -24
  171. nextmv-0.40.0/nextmv/cli/version.py +0 -19
  172. nextmv-0.40.0/nextmv/cloud/account.py +0 -213
  173. nextmv-0.40.0/nextmv/cloud/application.py +0 -4204
  174. nextmv-0.40.0/tests/cli/test_community.py +0 -665
  175. nextmv-0.40.0/tests/scripts/options_deprecated.py +0 -8
  176. {nextmv-0.40.0 → nextmv-1.0.0}/LICENSE +0 -0
  177. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/_serialization.py +0 -0
  178. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/base_model.py +0 -0
  179. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cli/__init__.py +0 -0
  180. nextmv-0.40.0/nextmv/cli/community/community.py → nextmv-1.0.0/nextmv/cli/community/__init__.py +1 -1
  181. /nextmv-0.40.0/nextmv/cli/configuration/configuration.py → /nextmv-1.0.0/nextmv/cli/configuration/__init__.py +0 -0
  182. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/assets.py +0 -0
  183. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/client.py +0 -0
  184. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/ensemble.py +0 -0
  185. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/input_set.py +0 -0
  186. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/scenario.py +0 -0
  187. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/secrets.py +0 -0
  188. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/url.py +0 -0
  189. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/cloud/version.py +0 -0
  190. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/.gitignore +0 -0
  191. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/README.md +0 -0
  192. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/app.yaml +0 -0
  193. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/input.json +0 -0
  194. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/main.py +0 -0
  195. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/requirements.txt +0 -0
  196. {nextmv-0.40.0/nextmv/cli/community → nextmv-1.0.0/nextmv/default_app/src}/__init__.py +0 -0
  197. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/default_app/src/visuals.py +0 -0
  198. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/__init__.py +0 -0
  199. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/executor.py +0 -0
  200. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/geojson_handler.py +0 -0
  201. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/local.py +0 -0
  202. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/local/plotly_handler.py +0 -0
  203. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/logger.py +0 -0
  204. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/manifest.py +0 -0
  205. {nextmv-0.40.0 → nextmv-1.0.0}/nextmv/safe.py +0 -0
  206. {nextmv-0.40.0/nextmv/cli/configuration → nextmv-1.0.0/tests}/__init__.py +0 -0
  207. {nextmv-0.40.0/nextmv/default_app/src → nextmv-1.0.0/tests/cli}/__init__.py +0 -0
  208. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cli/test_version.py +0 -0
  209. {nextmv-0.40.0/tests → nextmv-1.0.0/tests/cloud}/__init__.py +0 -0
  210. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/app.yaml +0 -0
  211. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_client.py +0 -0
  212. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_instance.py +0 -0
  213. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_package.py +0 -0
  214. {nextmv-0.40.0 → nextmv-1.0.0}/tests/cloud/test_scenario.py +0 -0
  215. {nextmv-0.40.0/tests/cli → nextmv-1.0.0/tests/integration}/__init__.py +0 -0
  216. {nextmv-0.40.0/tests → nextmv-1.0.0/tests/integration}/cloud/__init__.py +0 -0
  217. {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/__init__.py +0 -0
  218. {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/test_application.py +0 -0
  219. {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/test_executor.py +0 -0
  220. {nextmv-0.40.0 → nextmv-1.0.0}/tests/local/test_runner.py +0 -0
  221. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/__init__.py +0 -0
  222. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options1.py +0 -0
  223. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options2.py +0 -0
  224. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options3.py +0 -0
  225. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options4.py +0 -0
  226. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options5.py +0 -0
  227. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options6.py +0 -0
  228. {nextmv-0.40.0 → nextmv-1.0.0}/tests/scripts/options7.py +0 -0
  229. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_base_model.py +0 -0
  230. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_entrypoint/__init__.py +0 -0
  231. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_inputs/test_data.csv +0 -0
  232. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_inputs/test_data.json +0 -0
  233. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_inputs/test_data.txt +0 -0
  234. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_logger.py +0 -0
  235. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_manifest.py +0 -0
  236. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_model.py +0 -0
  237. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_output.py +0 -0
  238. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_polling.py +0 -0
  239. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_safe.py +0 -0
  240. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_serialization.py +0 -0
  241. {nextmv-0.40.0 → nextmv-1.0.0}/tests/test_version.py +0 -0
@@ -62,7 +62,6 @@ db.sqlite3
62
62
  db.sqlite3-journal
63
63
 
64
64
  # Flask stuff:
65
- instance/
66
65
  .webassets-cache
67
66
 
68
67
  # Scrapy stuff:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nextmv
3
- Version: 0.40.0
3
+ Version: 1.0.0
4
4
  Summary: The all-purpose Python SDK for Nextmv
5
5
  Project-URL: Homepage, https://www.nextmv.io
6
6
  Project-URL: Documentation, https://nextmv-py.docs.nextmv.io/en/latest/nextmv/
@@ -229,19 +229,20 @@ Requires-Dist: plotly>=6.0.1; extra == 'all'
229
229
  Provides-Extra: dev
230
230
  Requires-Dist: build>=1.0.3; extra == 'dev'
231
231
  Requires-Dist: folium>=0.20.0; extra == 'dev'
232
- Requires-Dist: mlflow>=2.19.0; extra == 'dev'
233
- Requires-Dist: nextroute>=1.11.1; extra == 'dev'
232
+ Requires-Dist: mlflow>=3.9.0; extra == 'dev'
233
+ Requires-Dist: nextpipe>=0.6.0; extra == 'dev'
234
234
  Requires-Dist: openpyxl>=3.1.5; extra == 'dev'
235
235
  Requires-Dist: pandas>=2.2.3; extra == 'dev'
236
236
  Requires-Dist: plotly>=6.0.1; extra == 'dev'
237
237
  Requires-Dist: pydantic>=2.5.2; extra == 'dev'
238
+ Requires-Dist: pytest>=9.0.2; extra == 'dev'
238
239
  Requires-Dist: pyyaml>=6.0.1; extra == 'dev'
239
240
  Requires-Dist: requests>=2.31.0; extra == 'dev'
240
241
  Requires-Dist: ruff>=0.1.7; extra == 'dev'
241
242
  Requires-Dist: twine>=4.0.2; extra == 'dev'
242
243
  Requires-Dist: urllib3>=2.1.0; extra == 'dev'
243
244
  Provides-Extra: notebook
244
- Requires-Dist: mlflow>=2.19.0; extra == 'notebook'
245
+ Requires-Dist: mlflow>=3.9.0; extra == 'notebook'
245
246
  Description-Content-Type: text/markdown
246
247
 
247
248
  # Nextmv Python SDK
@@ -267,20 +268,45 @@ Description-Content-Type: text/markdown
267
268
 
268
269
  Welcome to `nextmv`, the general Python SDK for the Nextmv Platform.
269
270
 
270
- 📖 To learn more about the `nextmv`, visit the [docs][docs].
271
+ 📖 To learn more about `nextmv`, visit the [docs][docs].
271
272
 
272
273
  ## Installation
273
274
 
274
- Requires Python `>=3.10`. Install using `pip`:
275
+ Requires Python `>=3.10`. Install using the Python package manager of your
276
+ choice:
275
277
 
276
- ```bash
277
- pip install nextmv
278
- ```
278
+ - `pip`
279
+
280
+ ```bash
281
+ pip install nextmv
282
+ ```
283
+
284
+ - `pipx`
285
+
286
+ ```bash
287
+ pipx install nextmv
288
+ ```
279
289
 
280
- Install all optional dependencies (recommended):
290
+ - `uv`
291
+
292
+ ```bash
293
+ uv tool install nextmv
294
+ ```
295
+
296
+ Install all optional dependencies (recommended) by specifying `"nextmv[all]"`
297
+ instead of just `"nextmv"`.
298
+
299
+ ## CLI
300
+
301
+ The Nextmv CLI is installed automatically with the SDK. To verify installation,
302
+ run:
281
303
 
282
304
  ```bash
283
- pip install "nextmv[all]"
305
+ nextmv --help
284
306
  ```
285
307
 
308
+ If you are contributing to the CLI, please make sure you read the [CLI
309
+ Contributing Guide][cli-contributing].
310
+
286
311
  [docs]: https://nextmv-py.docs.nextmv.io/en/latest/nextmv/
312
+ [cli-contributing]: nextmv/cli/CONTRIBUTING.md
@@ -21,20 +21,45 @@
21
21
 
22
22
  Welcome to `nextmv`, the general Python SDK for the Nextmv Platform.
23
23
 
24
- 📖 To learn more about the `nextmv`, visit the [docs][docs].
24
+ 📖 To learn more about `nextmv`, visit the [docs][docs].
25
25
 
26
26
  ## Installation
27
27
 
28
- Requires Python `>=3.10`. Install using `pip`:
28
+ Requires Python `>=3.10`. Install using the Python package manager of your
29
+ choice:
29
30
 
30
- ```bash
31
- pip install nextmv
32
- ```
31
+ - `pip`
32
+
33
+ ```bash
34
+ pip install nextmv
35
+ ```
36
+
37
+ - `pipx`
38
+
39
+ ```bash
40
+ pipx install nextmv
41
+ ```
33
42
 
34
- Install all optional dependencies (recommended):
43
+ - `uv`
44
+
45
+ ```bash
46
+ uv tool install nextmv
47
+ ```
48
+
49
+ Install all optional dependencies (recommended) by specifying `"nextmv[all]"`
50
+ instead of just `"nextmv"`.
51
+
52
+ ## CLI
53
+
54
+ The Nextmv CLI is installed automatically with the SDK. To verify installation,
55
+ run:
35
56
 
36
57
  ```bash
37
- pip install "nextmv[all]"
58
+ nextmv --help
38
59
  ```
39
60
 
61
+ If you are contributing to the CLI, please make sure you read the [CLI
62
+ Contributing Guide][cli-contributing].
63
+
40
64
  [docs]: https://nextmv-py.docs.nextmv.io/en/latest/nextmv/
65
+ [cli-contributing]: nextmv/cli/CONTRIBUTING.md
@@ -0,0 +1 @@
1
+ __version__ = "v1.0.0"
@@ -10,13 +10,12 @@ human to use it during local development. It is the standard way in which a
10
10
  from mlflow.pyfunc import load_model
11
11
 
12
12
  import nextmv
13
- from nextmv import cloud
14
13
 
15
14
 
16
15
  def main() -> None:
17
16
  """Entry point for the program."""
18
17
 
19
- manifest = cloud.Manifest.from_yaml(".")
18
+ manifest = nextmv.Manifest.from_yaml(".")
20
19
 
21
20
  # Load the options from the manifest.
22
21
  options = manifest.extract_options()
@@ -11,7 +11,6 @@ from .input import LocalInputLoader as LocalInputLoader
11
11
  from .input import csv_data_file as csv_data_file
12
12
  from .input import json_data_file as json_data_file
13
13
  from .input import load as load
14
- from .input import load_local as load_local
15
14
  from .input import text_data_file as text_data_file
16
15
  from .logger import log as log
17
16
  from .logger import redirect_stdout as redirect_stdout
@@ -31,7 +30,6 @@ from .model import Model as Model
31
30
  from .model import ModelConfiguration as ModelConfiguration
32
31
  from .options import Option as Option
33
32
  from .options import Options as Options
34
- from .options import Parameter as Parameter
35
33
  from .output import Asset as Asset
36
34
  from .output import DataPoint as DataPoint
37
35
  from .output import LocalOutputWriter as LocalOutputWriter
@@ -50,9 +48,9 @@ from .output import csv_solution_file as csv_solution_file
50
48
  from .output import json_solution_file as json_solution_file
51
49
  from .output import text_solution_file as text_solution_file
52
50
  from .output import write as write
53
- from .output import write_local as write_local
54
51
  from .polling import DEFAULT_POLLING_OPTIONS as DEFAULT_POLLING_OPTIONS
55
52
  from .polling import PollingOptions as PollingOptions
53
+ from .polling import default_polling_options as default_polling_options
56
54
  from .polling import poll as poll
57
55
  from .run import ErrorLog as ErrorLog
58
56
  from .run import ExternalRunResult as ExternalRunResult
@@ -72,12 +70,12 @@ from .run import RunType as RunType
72
70
  from .run import RunTypeConfiguration as RunTypeConfiguration
73
71
  from .run import StatisticsIndicator as StatisticsIndicator
74
72
  from .run import SyncedRun as SyncedRun
73
+ from .run import TimestampedRunLog as TimestampedRunLog
75
74
  from .run import TrackedRun as TrackedRun
76
75
  from .run import TrackedRunStatus as TrackedRunStatus
77
76
  from .run import run_duration as run_duration
78
77
  from .safe import safe_id as safe_id
79
78
  from .safe import safe_name_and_id as safe_name_and_id
80
- from .status import Status as Status
81
79
  from .status import StatusV2 as StatusV2
82
80
 
83
81
  VERSION = __version__