lma-load-simulator 0.1.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.
- lma_load_simulator-0.1.0/PKG-INFO +21 -0
- lma_load_simulator-0.1.0/README.md +11 -0
- lma_load_simulator-0.1.0/lma_load_simulator.egg-info/PKG-INFO +21 -0
- lma_load_simulator-0.1.0/lma_load_simulator.egg-info/SOURCES.txt +6 -0
- lma_load_simulator-0.1.0/lma_load_simulator.egg-info/dependency_links.txt +1 -0
- lma_load_simulator-0.1.0/lma_load_simulator.egg-info/top_level.txt +1 -0
- lma_load_simulator-0.1.0/pyproject.toml +17 -0
- lma_load_simulator-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lma-load-simulator
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Reserved placeholder package for AWS Live Meeting Assistant internal load simulator
|
|
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-load-simulator
|
|
12
|
+
|
|
13
|
+
Reserved placeholder package for AWS Live Meeting Assistant internal load simulator.
|
|
14
|
+
|
|
15
|
+
This package exists solely to reserve the `lma-load-simulator` name on public PyPI and prevent dependency confusion. It is not the real load simulator.
|
|
16
|
+
|
|
17
|
+
Install the real simulator from this repository instead:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install -e /path/to/LMA/utilities/load-simulator
|
|
21
|
+
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# lma-load-simulator
|
|
2
|
+
|
|
3
|
+
Reserved placeholder package for AWS Live Meeting Assistant internal load simulator.
|
|
4
|
+
|
|
5
|
+
This package exists solely to reserve the `lma-load-simulator` name on public PyPI and prevent dependency confusion. It is not the real load simulator.
|
|
6
|
+
|
|
7
|
+
Install the real simulator from this repository instead:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install -e /path/to/LMA/utilities/load-simulator
|
|
11
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lma-load-simulator
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Reserved placeholder package for AWS Live Meeting Assistant internal load simulator
|
|
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-load-simulator
|
|
12
|
+
|
|
13
|
+
Reserved placeholder package for AWS Live Meeting Assistant internal load simulator.
|
|
14
|
+
|
|
15
|
+
This package exists solely to reserve the `lma-load-simulator` name on public PyPI and prevent dependency confusion. It is not the real load simulator.
|
|
16
|
+
|
|
17
|
+
Install the real simulator from this repository instead:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install -e /path/to/LMA/utilities/load-simulator
|
|
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-load-simulator"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Reserved placeholder package for AWS Live Meeting Assistant internal load simulator"
|
|
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"
|