lma-cli 0.3.4__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.
- lma_cli-0.3.4/PKG-INFO +21 -0
- lma_cli-0.3.4/README.md +11 -0
- lma_cli-0.3.4/lma_cli.egg-info/PKG-INFO +21 -0
- lma_cli-0.3.4/lma_cli.egg-info/SOURCES.txt +6 -0
- lma_cli-0.3.4/lma_cli.egg-info/dependency_links.txt +1 -0
- lma_cli-0.3.4/lma_cli.egg-info/top_level.txt +1 -0
- lma_cli-0.3.4/pyproject.toml +17 -0
- lma_cli-0.3.4/setup.cfg +4 -0
lma_cli-0.3.4/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lma-cli
|
|
3
|
+
Version: 0.3.4
|
|
4
|
+
Summary: Reserved placeholder package for AWS Live Meeting Assistant internal CLI
|
|
5
|
+
Author: Amazon Web Services
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/aws-samples/amazon-transcribe-live-meeting-assistant
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# lma-cli
|
|
12
|
+
|
|
13
|
+
Reserved placeholder package for AWS Live Meeting Assistant internal CLI.
|
|
14
|
+
|
|
15
|
+
This package exists solely to reserve the `lma-cli` name on public PyPI and prevent dependency confusion. It is not the real LMA CLI.
|
|
16
|
+
|
|
17
|
+
Install the real CLI from this repository instead:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install -e /path/to/LMA/lib/lma_cli_pkg
|
|
21
|
+
```
|
lma_cli-0.3.4/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# lma-cli
|
|
2
|
+
|
|
3
|
+
Reserved placeholder package for AWS Live Meeting Assistant internal CLI.
|
|
4
|
+
|
|
5
|
+
This package exists solely to reserve the `lma-cli` name on public PyPI and prevent dependency confusion. It is not the real LMA CLI.
|
|
6
|
+
|
|
7
|
+
Install the real CLI from this repository instead:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install -e /path/to/LMA/lib/lma_cli_pkg
|
|
11
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lma-cli
|
|
3
|
+
Version: 0.3.4
|
|
4
|
+
Summary: Reserved placeholder package for AWS Live Meeting Assistant internal CLI
|
|
5
|
+
Author: Amazon Web Services
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/aws-samples/amazon-transcribe-live-meeting-assistant
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# lma-cli
|
|
12
|
+
|
|
13
|
+
Reserved placeholder package for AWS Live Meeting Assistant internal CLI.
|
|
14
|
+
|
|
15
|
+
This package exists solely to reserve the `lma-cli` name on public PyPI and prevent dependency confusion. It is not the real LMA CLI.
|
|
16
|
+
|
|
17
|
+
Install the real CLI from this repository instead:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install -e /path/to/LMA/lib/lma_cli_pkg
|
|
21
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "lma-cli"
|
|
7
|
+
version = "0.3.4"
|
|
8
|
+
description = "Reserved placeholder package for AWS Live Meeting Assistant internal CLI"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Amazon Web Services" },
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/aws-samples/amazon-transcribe-live-meeting-assistant"
|
lma_cli-0.3.4/setup.cfg
ADDED