ellf-cli 3.1.3__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 (108) hide show
  1. ellf_cli-3.1.3/LICENSE +3 -0
  2. ellf_cli-3.1.3/MANIFEST.in +2 -0
  3. ellf_cli-3.1.3/PKG-INFO +30 -0
  4. ellf_cli-3.1.3/README.md +1198 -0
  5. ellf_cli-3.1.3/ellf_cli/__init__.py +0 -0
  6. ellf_cli-3.1.3/ellf_cli/__main__.py +54 -0
  7. ellf_cli-3.1.3/ellf_cli/about.json +19 -0
  8. ellf_cli-3.1.3/ellf_cli/about.py +23 -0
  9. ellf_cli-3.1.3/ellf_cli/appdirs.py +624 -0
  10. ellf_cli-3.1.3/ellf_cli/auth.py +488 -0
  11. ellf_cli-3.1.3/ellf_cli/cli.py +127 -0
  12. ellf_cli-3.1.3/ellf_cli/cloud/__init__.py +0 -0
  13. ellf_cli-3.1.3/ellf_cli/cloud/gcp.py +402 -0
  14. ellf_cli-3.1.3/ellf_cli/cluster_config.py +120 -0
  15. ellf_cli-3.1.3/ellf_cli/commands/__init__.py +61 -0
  16. ellf_cli-3.1.3/ellf_cli/commands/_recipe_file.py +160 -0
  17. ellf_cli-3.1.3/ellf_cli/commands/_recipe_subcommand.py +440 -0
  18. ellf_cli-3.1.3/ellf_cli/commands/_state.py +106 -0
  19. ellf_cli-3.1.3/ellf_cli/commands/actions.py +310 -0
  20. ellf_cli-3.1.3/ellf_cli/commands/agents.py +342 -0
  21. ellf_cli-3.1.3/ellf_cli/commands/assets.py +157 -0
  22. ellf_cli-3.1.3/ellf_cli/commands/clusters.py +518 -0
  23. ellf_cli-3.1.3/ellf_cli/commands/config.py +190 -0
  24. ellf_cli-3.1.3/ellf_cli/commands/datasets.py +166 -0
  25. ellf_cli-3.1.3/ellf_cli/commands/files/__init__.py +7 -0
  26. ellf_cli-3.1.3/ellf_cli/commands/files/cp.py +425 -0
  27. ellf_cli-3.1.3/ellf_cli/commands/files/ls.py +62 -0
  28. ellf_cli-3.1.3/ellf_cli/commands/files/rm.py +58 -0
  29. ellf_cli-3.1.3/ellf_cli/commands/files/rsync.py +269 -0
  30. ellf_cli-3.1.3/ellf_cli/commands/files/stats.py +42 -0
  31. ellf_cli-3.1.3/ellf_cli/commands/general.py +192 -0
  32. ellf_cli-3.1.3/ellf_cli/commands/import_export.py +240 -0
  33. ellf_cli-3.1.3/ellf_cli/commands/infra/__init__.py +9 -0
  34. ellf_cli-3.1.3/ellf_cli/commands/infra/_helpers.py +247 -0
  35. ellf_cli-3.1.3/ellf_cli/commands/infra/deploy.py +275 -0
  36. ellf_cli-3.1.3/ellf_cli/commands/infra/init_values.py +133 -0
  37. ellf_cli-3.1.3/ellf_cli/commands/infra/provision.py +70 -0
  38. ellf_cli-3.1.3/ellf_cli/commands/infra/register.py +89 -0
  39. ellf_cli-3.1.3/ellf_cli/commands/infra/setup.py +37 -0
  40. ellf_cli-3.1.3/ellf_cli/commands/infra/start.py +101 -0
  41. ellf_cli-3.1.3/ellf_cli/commands/infra/terraform.py +192 -0
  42. ellf_cli-3.1.3/ellf_cli/commands/jobs.py +80 -0
  43. ellf_cli-3.1.3/ellf_cli/commands/packages.py +153 -0
  44. ellf_cli-3.1.3/ellf_cli/commands/paths.py +128 -0
  45. ellf_cli-3.1.3/ellf_cli/commands/plans.py +117 -0
  46. ellf_cli-3.1.3/ellf_cli/commands/projects.py +203 -0
  47. ellf_cli-3.1.3/ellf_cli/commands/publish_code.py +433 -0
  48. ellf_cli-3.1.3/ellf_cli/commands/publish_data.py +87 -0
  49. ellf_cli-3.1.3/ellf_cli/commands/recipes.py +440 -0
  50. ellf_cli-3.1.3/ellf_cli/commands/secrets.py +182 -0
  51. ellf_cli-3.1.3/ellf_cli/commands/support.py +272 -0
  52. ellf_cli-3.1.3/ellf_cli/commands/tasks.py +313 -0
  53. ellf_cli-3.1.3/ellf_cli/commands/todos.py +277 -0
  54. ellf_cli-3.1.3/ellf_cli/config.py +119 -0
  55. ellf_cli-3.1.3/ellf_cli/ellf.json +6151 -0
  56. ellf_cli-3.1.3/ellf_cli/errors.py +110 -0
  57. ellf_cli-3.1.3/ellf_cli/helm.py +715 -0
  58. ellf_cli-3.1.3/ellf_cli/key_pair.py +41 -0
  59. ellf_cli-3.1.3/ellf_cli/main.py +6 -0
  60. ellf_cli-3.1.3/ellf_cli/messages.py +229 -0
  61. ellf_cli-3.1.3/ellf_cli/query.py +666 -0
  62. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/cookiecutter.json +7 -0
  63. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/.gitignore +14 -0
  64. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/README.md.tmpl +97 -0
  65. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/requirements-dev.in +8 -0
  66. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/requirements.in +1 -0
  67. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/setup.py.tmpl +48 -0
  68. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/tests/__init__.py +0 -0
  69. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/{{cookiecutter.package_name}}/__init__.py +0 -0
  70. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/{{cookiecutter.package_name}}/about.py +8 -0
  71. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/{{cookiecutter.package_name}}/recipes/__init__.py +6 -0
  72. ellf_cli-3.1.3/ellf_cli/recipes_cookiecutter/{{cookiecutter.package_dir}}/{{cookiecutter.package_name}}/recipes/example_task.py +24 -0
  73. ellf_cli-3.1.3/ellf_cli/testing/__init__.py +137 -0
  74. ellf_cli-3.1.3/ellf_cli/ty.py +109 -0
  75. ellf_cli-3.1.3/ellf_cli/ui.py +470 -0
  76. ellf_cli-3.1.3/ellf_cli/url.py +167 -0
  77. ellf_cli-3.1.3/ellf_cli/util.py +181 -0
  78. ellf_cli-3.1.3/ellf_cli.egg-info/PKG-INFO +30 -0
  79. ellf_cli-3.1.3/ellf_cli.egg-info/SOURCES.txt +107 -0
  80. ellf_cli-3.1.3/ellf_cli.egg-info/dependency_links.txt +1 -0
  81. ellf_cli-3.1.3/ellf_cli.egg-info/entry_points.txt +2 -0
  82. ellf_cli-3.1.3/ellf_cli.egg-info/not-zip-safe +1 -0
  83. ellf_cli-3.1.3/ellf_cli.egg-info/requires.txt +14 -0
  84. ellf_cli-3.1.3/ellf_cli.egg-info/top_level.txt +1 -0
  85. ellf_cli-3.1.3/pyproject.toml +16 -0
  86. ellf_cli-3.1.3/setup.cfg +18 -0
  87. ellf_cli-3.1.3/setup.py +73 -0
  88. ellf_cli-3.1.3/tests/test_appdirs.py +93 -0
  89. ellf_cli-3.1.3/tests/test_auth.py +63 -0
  90. ellf_cli-3.1.3/tests/test_config.py +148 -0
  91. ellf_cli-3.1.3/tests/test_errors.py +73 -0
  92. ellf_cli-3.1.3/tests/test_files_cp.py +66 -0
  93. ellf_cli-3.1.3/tests/test_files_cp_helpers.py +50 -0
  94. ellf_cli-3.1.3/tests/test_info.py +13 -0
  95. ellf_cli-3.1.3/tests/test_invalid_secrets.py +21 -0
  96. ellf_cli-3.1.3/tests/test_key_pair.py +32 -0
  97. ellf_cli-3.1.3/tests/test_login.py +109 -0
  98. ellf_cli-3.1.3/tests/test_main.py +53 -0
  99. ellf_cli-3.1.3/tests/test_projects.py +11 -0
  100. ellf_cli-3.1.3/tests/test_query.py +35 -0
  101. ellf_cli-3.1.3/tests/test_recipe_file.py +197 -0
  102. ellf_cli-3.1.3/tests/test_recipes.py +116 -0
  103. ellf_cli-3.1.3/tests/test_state.py +64 -0
  104. ellf_cli-3.1.3/tests/test_support.py +294 -0
  105. ellf_cli-3.1.3/tests/test_ty.py +23 -0
  106. ellf_cli-3.1.3/tests/test_ui.py +26 -0
  107. ellf_cli-3.1.3/tests/test_ui_extras.py +233 -0
  108. ellf_cli-3.1.3/tests/test_util.py +283 -0
ellf_cli-3.1.3/LICENSE ADDED
@@ -0,0 +1,3 @@
1
+ All Rights Reserved
2
+
3
+ Copyright (C) 2023 ExplosionAI GmbH
@@ -0,0 +1,2 @@
1
+ include ellf_cli/ellf.json
2
+ include LICENSE
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: ellf-cli
3
+ Version: 3.1.3
4
+ Summary: Ellf Command Line Interface
5
+ Home-page: https://prodi.gy
6
+ Author: ExplosionAI GmbH
7
+ Author-email: contact@explosion.ai
8
+ License: All rights reserved
9
+ License-File: LICENSE
10
+ Requires-Dist: cryptography>=35.0.0
11
+ Requires-Dist: email-validator
12
+ Requires-Dist: httpx
13
+ Requires-Dist: httpx
14
+ Requires-Dist: packaging
15
+ Requires-Dist: pkginfo>=1.7
16
+ Requires-Dist: prodigy-teams-broker-sdk
17
+ Requires-Dist: prodigy-teams-pam-sdk
18
+ Requires-Dist: pydantic[email]>=2.0.0
19
+ Requires-Dist: pyjwt
20
+ Requires-Dist: radicli>=0.0.25
21
+ Requires-Dist: srsly>=2.4
22
+ Requires-Dist: uuid-utils>=0.9.0
23
+ Requires-Dist: wasabi>=0.8.2
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: home-page
27
+ Dynamic: license
28
+ Dynamic: license-file
29
+ Dynamic: requires-dist
30
+ Dynamic: summary