-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "RGBMatrixEmulator"
dynamic = ["version"]
requires-python = ">=3.10"
description = "A PC emulator for Raspberry Pi LED matrices driven by rpi-rgb-led-matrix"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Tyler Porter", email = "tyler.b.porter@gmail.com" },
]
keywords = [
"LED",
"LED matrix",
"RPI",
"matrix",
"raspberry",
"raspberry pi",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Other/Nonlisted Topic",
]
dependencies = [
"bdfparser<=2.2.0",
"libsixel-python>=0.5.0",
"numpy>=1.2.0",
"Pillow>=10.0.1",
"pygame>=2.0.1,<3",
"tornado>=6.5.5"
]
[project.scripts]
rgbme = "RGBMatrixEmulator.cli:run_cli"
[project.optional-dependencies]
pi5 = [
"Adafruit-Blinka-Raspberry-Pi5-Piomatter>=1.0.0; python_version>='3.11'",
"adafruit-blinka>=8.0.0; python_version>='3.11'",
]
[project.urls]
Homepage = "https://github.com/ty-porter/RGBMatrixEmulator"
[tool.black]
target-version = ["py310"]
extend-exclude = "samples"
[tool.hatch.version]
path = "RGBMatrixEmulator/version.py"
[tool.hatch.build.targets.wheel.shared-data]
LICENSE = "docs/LICENSE"
"README.md" = "docs/README.md"
"description.md" = "docs/description.md"
"RGBMatrixEmulator/icon.png" = "RGBMatrixEmulator/icon.png"
"RGBMatrixEmulator/adapters/browser_adapter/static/index.html" = "RGBMatrixEmulator/index.html"
"RGBMatrixEmulator/adapters/browser_adapter/static/assets" = "RGBMatrixEmulator"
"RGBMatrixEmulator/py.typed" = "RGBMatrixEmulator/py.typed"
[tool.hatch.build.targets.sdist]
include = [
"RGBMatrixEmulator",
]
[dependency-groups]
dev = [
"parameterized",
"black"
]