RGBMatrixEmulator 0.16.3__tar.gz → 0.16.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.
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/PKG-INFO +29 -7
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/README.md +24 -4
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/version.py +1 -1
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/pyproject.toml +7 -3
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/.gitignore +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/LICENSE +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/base.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/README.md +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/adapter.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/fps.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/base.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/image.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/image_web_socket.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/main.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/request_handlers/single_file.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/server.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/static/assets/client.js +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/static/assets/icon.ico +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/static/assets/styles.css +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/browser_adapter/static/index.html +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/pi5_adapter/README.md +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/pi5_adapter/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/pygame_adapter.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/raw_adapter/README.md +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/raw_adapter/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/sixel_adapter.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/terminal_adapter.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/tkinter_adapter.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/turtle_adapter.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/cli/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/cli/command.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/cli/config.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/emulation/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/emulation/canvas.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/emulation/matrix.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/emulation/options.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/graphics/__init__.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/graphics/color.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/graphics/font.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/icon.png +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/internal/adapter_loader.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/internal/emulator_config.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/internal/pixel_style.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/logger.py +0 -0
- {rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: RGBMatrixEmulator
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.4
|
|
4
4
|
Summary: A PC emulator for Raspberry Pi LED matrices driven by rpi-rgb-led-matrix
|
|
5
5
|
Project-URL: Homepage, https://github.com/ty-porter/RGBMatrixEmulator
|
|
6
6
|
Author-email: Tyler Porter <tyler.b.porter@gmail.com>
|
|
@@ -18,14 +18,16 @@ Classifier: Programming Language :: Python :: 3
|
|
|
18
18
|
Classifier: Topic :: Other/Nonlisted Topic
|
|
19
19
|
Requires-Python: >=3.10
|
|
20
20
|
Requires-Dist: bdfparser<=2.2.0
|
|
21
|
-
Requires-Dist: libsixel-python>=0.5.0
|
|
22
21
|
Requires-Dist: numpy>=1.2.0
|
|
23
22
|
Requires-Dist: pillow>=10.0.1
|
|
24
|
-
Requires-Dist: pygame<3,>=2.0.1
|
|
25
23
|
Requires-Dist: tornado>=6.5.5
|
|
26
24
|
Provides-Extra: pi5
|
|
27
25
|
Requires-Dist: adafruit-blinka-raspberry-pi5-piomatter>=1.0.0; (python_version >= '3.11') and extra == 'pi5'
|
|
28
26
|
Requires-Dist: adafruit-blinka>=8.0.0; (python_version >= '3.11') and extra == 'pi5'
|
|
27
|
+
Provides-Extra: pygame
|
|
28
|
+
Requires-Dist: pygame<3,>=2.0.1; extra == 'pygame'
|
|
29
|
+
Provides-Extra: sixel
|
|
30
|
+
Requires-Dist: libsixel-python>=0.5.0; extra == 'sixel'
|
|
29
31
|
Description-Content-Type: text/markdown
|
|
30
32
|
|
|
31
33
|
# `RGBMatrixEmulator`
|
|
@@ -42,19 +44,39 @@ Description-Content-Type: text/markdown
|
|
|
42
44
|
|
|
43
45
|
## Installation
|
|
44
46
|
|
|
45
|
-
`RGBMatrixEmulator` is in the [Python Package Index (PyPI)](http://pypi.python.org/pypi/RGBMatrixEmulator/).
|
|
46
|
-
Installing with ``pip`` is recommended for all systems.
|
|
47
|
+
`RGBMatrixEmulator` is in the [Python Package Index (PyPI)](http://pypi.python.org/pypi/RGBMatrixEmulator/). Installing with `pip` is recommended for all systems.
|
|
47
48
|
|
|
48
49
|
```sh
|
|
49
50
|
pip install RGBMatrixEmulator
|
|
50
51
|
```
|
|
51
52
|
|
|
52
|
-
|
|
53
|
+
The base installation includes the following display adapters:
|
|
53
54
|
|
|
54
|
-
|
|
55
|
+
* `browser` (default)
|
|
56
|
+
* `terminal`
|
|
57
|
+
* `tkinter`
|
|
58
|
+
* `turtle`
|
|
59
|
+
* `raw`
|
|
60
|
+
|
|
61
|
+
For more information on display adapters, see the [Display Adapters](#display-adapters) section.
|
|
62
|
+
|
|
63
|
+
### Optional Adapters
|
|
64
|
+
|
|
65
|
+
The following adapters are supported but not installed by default.
|
|
66
|
+
|
|
67
|
+
* `sixel`
|
|
68
|
+
* `pygame`
|
|
69
|
+
* `pi5` (experimental)
|
|
70
|
+
|
|
71
|
+
You can install optional adapters via `pip`:
|
|
55
72
|
|
|
56
73
|
```sh
|
|
74
|
+
pip install RGBMatrixEmulator[sixel]
|
|
75
|
+
pip install RGBMatrixEmulator[pygame]
|
|
57
76
|
pip install RGBMatrixEmulator[pi5]
|
|
77
|
+
|
|
78
|
+
# All optional adapters at once
|
|
79
|
+
pip install RGBMatrixEmulator[sixel,pygame,pi5]
|
|
58
80
|
```
|
|
59
81
|
|
|
60
82
|
## Usage
|
|
@@ -12,19 +12,39 @@
|
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
|
-
`RGBMatrixEmulator` is in the [Python Package Index (PyPI)](http://pypi.python.org/pypi/RGBMatrixEmulator/).
|
|
16
|
-
Installing with ``pip`` is recommended for all systems.
|
|
15
|
+
`RGBMatrixEmulator` is in the [Python Package Index (PyPI)](http://pypi.python.org/pypi/RGBMatrixEmulator/). Installing with `pip` is recommended for all systems.
|
|
17
16
|
|
|
18
17
|
```sh
|
|
19
18
|
pip install RGBMatrixEmulator
|
|
20
19
|
```
|
|
21
20
|
|
|
22
|
-
|
|
21
|
+
The base installation includes the following display adapters:
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
* `browser` (default)
|
|
24
|
+
* `terminal`
|
|
25
|
+
* `tkinter`
|
|
26
|
+
* `turtle`
|
|
27
|
+
* `raw`
|
|
28
|
+
|
|
29
|
+
For more information on display adapters, see the [Display Adapters](#display-adapters) section.
|
|
30
|
+
|
|
31
|
+
### Optional Adapters
|
|
32
|
+
|
|
33
|
+
The following adapters are supported but not installed by default.
|
|
34
|
+
|
|
35
|
+
* `sixel`
|
|
36
|
+
* `pygame`
|
|
37
|
+
* `pi5` (experimental)
|
|
38
|
+
|
|
39
|
+
You can install optional adapters via `pip`:
|
|
25
40
|
|
|
26
41
|
```sh
|
|
42
|
+
pip install RGBMatrixEmulator[sixel]
|
|
43
|
+
pip install RGBMatrixEmulator[pygame]
|
|
27
44
|
pip install RGBMatrixEmulator[pi5]
|
|
45
|
+
|
|
46
|
+
# All optional adapters at once
|
|
47
|
+
pip install RGBMatrixEmulator[sixel,pygame,pi5]
|
|
28
48
|
```
|
|
29
49
|
|
|
30
50
|
## Usage
|
|
@@ -33,17 +33,21 @@ classifiers = [
|
|
|
33
33
|
]
|
|
34
34
|
dependencies = [
|
|
35
35
|
"bdfparser<=2.2.0",
|
|
36
|
-
"libsixel-python>=0.5.0",
|
|
37
36
|
"numpy>=1.2.0",
|
|
38
37
|
"Pillow>=10.0.1",
|
|
39
|
-
"
|
|
40
|
-
"tornado>=6.5.5"
|
|
38
|
+
"tornado>=6.5.5",
|
|
41
39
|
]
|
|
42
40
|
|
|
43
41
|
[project.scripts]
|
|
44
42
|
rgbme = "RGBMatrixEmulator.cli:run_cli"
|
|
45
43
|
|
|
46
44
|
[project.optional-dependencies]
|
|
45
|
+
pygame = [
|
|
46
|
+
"pygame>=2.0.1,<3",
|
|
47
|
+
]
|
|
48
|
+
sixel = [
|
|
49
|
+
"libsixel-python>=0.5.0",
|
|
50
|
+
]
|
|
47
51
|
pi5 = [
|
|
48
52
|
"Adafruit-Blinka-Raspberry-Pi5-Piomatter>=1.0.0; python_version>='3.11'",
|
|
49
53
|
"adafruit-blinka>=8.0.0; python_version>='3.11'",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/pygame_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/sixel_adapter.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/terminal_adapter.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/tkinter_adapter.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/adapters/turtle_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/emulation/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/emulation/options.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/graphics/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/internal/adapter_loader.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/internal/emulator_config.py
RENAMED
|
File without changes
|
{rgbmatrixemulator-0.16.3 → rgbmatrixemulator-0.16.4}/RGBMatrixEmulator/internal/pixel_style.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|