-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 2.04 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "framework-led-matrix-monitor"
version = "1.1.1"
description = "System monitor application for Framework 16 LED matrix modules"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Timoteus Zelle", email = "46320568+timoteuszelle@users.noreply.github.com"}
]
maintainers = [
{name = "Timoteus Zelle", email = "46320568+timoteuszelle@users.noreply.github.com"}
]
keywords = ["framework", "led", "matrix", "system", "monitor", "hardware"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
"Topic :: System :: Hardware",
]
requires-python = ">=3.7"
dependencies = [
"numpy",
"psutil",
"pyserial",
"evdev",
"pynput",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"flake8",
]
[project.urls]
Homepage = "https://github.com/timoteuszelle/led-matrix"
Repository = "https://github.com/timoteuszelle/led-matrix"
Issues = "https://github.com/timoteuszelle/led-matrix/issues"
Documentation = "https://github.com/timoteuszelle/led-matrix#readme"
[project.scripts]
framework-led-matrix-monitor = "led_system_monitor:cli_main"
[tool.setuptools]
py-modules = [
"led_system_monitor",
"drawing",
"monitors",
"patterns",
"commands",
"find_ports",
]
[tool.setuptools.packages.find]
include = ["plugins*"]
[tool.black]
line-length = 88
target-version = ['py37']
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v"