forked from bkbilly/lnxlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·38 lines (34 loc) · 969 Bytes
/
Copy pathpyproject.toml
File metadata and controls
executable file
·38 lines (34 loc) · 969 Bytes
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
[build-system]
requires = ["setuptools~=68.0.0", "wheel~=0.40.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lnxlink"
version = "2025.7.0"
description = "Internet Of Things (IOT) integration with Linux using MQTT"
readme = "README.md"
keywords = ["lnxlink"]
requires-python = ">=3.7.0"
authors = [
{name="bkbilly", email="bkbilly@hotmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
]
dependencies = [
"distro>=1.9.0",
"PyYAML>=6.0.1",
"paho-mqtt>=2.1.0",
"requests>=2.31.0",
"psutil>=7.0.0",
"inotify>=0.2.10",
"jeepney>=0.9.0"
]
[project.urls]
"Source Code" = "https://github.com/bkbilly/lnxlink"
"Documentation" = "https://bkbilly.gitbook.io/lnxlink"
[tool.setuptools.packages.find]
include = ["lnxlink*"]
[project.scripts]
lnxlink = "lnxlink.__main__:main"