remotivelabs-cli 0.0.1a0__tar.gz → 0.0.1a1__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 (22) hide show
  1. remotivelabs_cli-0.0.1a1/PKG-INFO +46 -0
  2. remotivelabs_cli-0.0.1a1/README.md +26 -0
  3. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/remotive.py +2 -2
  4. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/pyproject.toml +4 -4
  5. remotivelabs_cli-0.0.1a0/PKG-INFO +0 -21
  6. remotivelabs_cli-0.0.1a0/README.md +0 -1
  7. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/__about__.py +0 -0
  8. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/__init__.py +0 -0
  9. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/brokers.py +0 -0
  10. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/__init__.py +0 -0
  11. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/auth.py +0 -0
  12. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/brokers.py +0 -0
  13. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/cloud_cli.py +0 -0
  14. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/configs.py +0 -0
  15. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/recordings.py +0 -0
  16. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/rest_helper.py +0 -0
  17. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/service_account_keys.py +0 -0
  18. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/cloud/service_accounts.py +0 -0
  19. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/lib/__about__.py +0 -0
  20. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/lib/broker.py +0 -0
  21. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/requirements.txt +0 -0
  22. {remotivelabs_cli-0.0.1a0 → remotivelabs_cli-0.0.1a1}/cli/test/test_simple.py +0 -0
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: remotivelabs-cli
3
+ Version: 0.0.1a1
4
+ Summary:
5
+ Author: Johan Rask
6
+ Author-email: johan.rask@remotivelabs.com
7
+ Requires-Python: >=3.9,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Requires-Dist: cryptography (==40.0.2)
13
+ Requires-Dist: pyjwt (>=2.6.0,<3.0.0)
14
+ Requires-Dist: remotivelabs-broker (>=0.1.0,<0.2.0)
15
+ Requires-Dist: rich (>=12.6.0,<13.0.0)
16
+ Requires-Dist: typer (>=0.6.1,<0.7.0)
17
+ Requires-Dist: zeroconf (>=0.64.1,<0.65.0)
18
+ Description-Content-Type: text/markdown
19
+
20
+ # RemotiveLabs - CLI
21
+
22
+ Use this CLI with our cloud and broker as a compliment to code and web tools.
23
+
24
+ *NOTE: This is currently an experimental version*
25
+
26
+ ## Install
27
+
28
+ Requires python 3
29
+
30
+ ```
31
+ pip install remotivelabs-cli
32
+ remotive --help
33
+
34
+ Usage: remotive [OPTIONS] COMMAND [ARGS]...
35
+
36
+ ╭─ Options ───────────────────────────────────────────────────────────────────────────────────────────────╮
37
+ │ --install-completion Install completion for the current shell. │
38
+ │ --show-completion Show completion for the current shell, to copy it or customize the │
39
+ │ installation. │
40
+ │ --help Show this message and exit. │
41
+ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯
42
+ ╭─ Commands ──────────────────────────────────────────────────────────────────────────────────────────────╮
43
+ │ cloud Manage resources in RemotiveCloud │
44
+ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯
45
+ ```
46
+
@@ -0,0 +1,26 @@
1
+ # RemotiveLabs - CLI
2
+
3
+ Use this CLI with our cloud and broker as a compliment to code and web tools.
4
+
5
+ *NOTE: This is currently an experimental version*
6
+
7
+ ## Install
8
+
9
+ Requires python 3
10
+
11
+ ```
12
+ pip install remotivelabs-cli
13
+ remotive --help
14
+
15
+ Usage: remotive [OPTIONS] COMMAND [ARGS]...
16
+
17
+ ╭─ Options ───────────────────────────────────────────────────────────────────────────────────────────────╮
18
+ │ --install-completion Install completion for the current shell. │
19
+ │ --show-completion Show completion for the current shell, to copy it or customize the │
20
+ │ installation. │
21
+ │ --help Show this message and exit. │
22
+ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯
23
+ ╭─ Commands ──────────────────────────────────────────────────────────────────────────────────────────────╮
24
+ │ cloud Manage resources in RemotiveCloud │
25
+ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯
26
+ ```
@@ -1,5 +1,5 @@
1
1
  import typer
2
- #from .brokers import app as broker_app
2
+ from .brokers import app as broker_app
3
3
  from .cloud.cloud_cli import app as cloud_app
4
4
 
5
5
  # from cloud import cloud_cli
@@ -9,5 +9,5 @@ app = typer.Typer()
9
9
 
10
10
  # def run_cli():
11
11
 
12
- #app.add_typer(broker_app, name="broker", help="Manage a single broker - local or cloud")
12
+ app.add_typer(broker_app, name="broker", help="Manage a single broker - local or cloud")
13
13
  app.add_typer(cloud_app, name="cloud", help="Manage resources in RemotiveCloud", )
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "remotivelabs-cli"
3
- version = "0.0.1.a0"
3
+ version = "0.0.1.a1"
4
4
  description = ""
5
5
  authors = ["Johan Rask <johan.rask@remotivelabs.com>"]
6
6
  readme = "README.md"
@@ -9,13 +9,13 @@ packages = [{include = "cli"}]
9
9
  [tool.poetry.dependencies]
10
10
  python = "^3.9"
11
11
  typer = "^0.6.1"
12
- #remotivelabs-broker = "^0.1.0"
12
+ remotivelabs-broker = "^0.1.0"
13
13
  rich = "^12.6.0"
14
14
  cryptography = "40.0.2"
15
15
  pyjwt = "^2.6.0"
16
16
  zeroconf = "^0.64.1"
17
- urllib3 = ">=1.26"
18
- requests = ">=2.25"
17
+ #urllib3 = ">=1.26"
18
+ #requests = ">=2.25"
19
19
 
20
20
  [tool.poetry.scripts]
21
21
  remotive = "cli.remotive:app"
@@ -1,21 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: remotivelabs-cli
3
- Version: 0.0.1a0
4
- Summary:
5
- Author: Johan Rask
6
- Author-email: johan.rask@remotivelabs.com
7
- Requires-Python: >=3.9,<4.0
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.9
10
- Classifier: Programming Language :: Python :: 3.10
11
- Classifier: Programming Language :: Python :: 3.11
12
- Requires-Dist: cryptography (==40.0.2)
13
- Requires-Dist: pyjwt (>=2.6.0,<3.0.0)
14
- Requires-Dist: requests (>=2.25)
15
- Requires-Dist: rich (>=12.6.0,<13.0.0)
16
- Requires-Dist: typer (>=0.6.1,<0.7.0)
17
- Requires-Dist: urllib3 (>=1.26)
18
- Requires-Dist: zeroconf (>=0.64.1,<0.65.0)
19
- Description-Content-Type: text/markdown
20
-
21
- # remotivelabs-cli
@@ -1 +0,0 @@
1
- # remotivelabs-cli