-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
executable file
·39 lines (34 loc) · 967 Bytes
/
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
[build-system]
requires = ["setuptools~=68.0.0", "wheel~=0.40.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lnxlink"
version = "2024.11.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="[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
]
dependencies = [
"distro>=1.7.0",
"PyYAML>=5.3.1",
"paho-mqtt>=1.5.1",
"requests>=2.28.1",
"jc>=1.23.0",
"psutil>=5.8.0",
"inotify>=0.2.10"
]
[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"