-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
74 lines (66 loc) · 1.82 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "RGBMatrixEmulator"
dynamic = ["version"]
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.1",
]
[project.urls]
Homepage = "https://github.com/ty-porter/RGBMatrixEmulator"
[tool.black]
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.ico" = "RGBMatrixEmulator/icon.ico"
"RGBMatrixEmulator/icon.png" = "RGBMatrixEmulator/icon.png"
"RGBMatrixEmulator/adapters/browser_adapter/static/index.html" = "RGBMatrixEmulator/index.html"
"RGBMatrixEmulator/adapters/browser_adapter/static/assets" = "RGBMatrixEmulator"
[tool.hatch.build.targets.sdist]
include = [
"/rgbmatrixemulator",
]
[tool.hatch.envs.test]
dependencies = [
"parameterized",
"black"
]
[tool.hatch.envs.test.scripts]
run = "python -m unittest discover -s test"
lint = "black ."
lint_check = "black . --check"