-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mpris-monitor-kasa"
description = "Monitor the system D-Bus for MPRIS events and control Kasa switches."
version = "1.0.0"
readme = "README.md"
authors = [
{name = "Tucker Kern", email = "[email protected]"},
]
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Home Automation"
]
dependencies = [
"dbus-next",
"python-kasa",
"rpi_ws281x",
"gpiozero",
"lgpio"
]
[project.urls]
Repository = "https://github.com/mill1000/mpris-monitor"
Issues = "https://github.com/mill1000/mpris-monitor/issues"
[project.scripts]
mpris-monitor-kasa = "mpris_monitor_kasa:main"
[tool.setuptools]
py-modules = ["mpris_monitor_kasa"]