-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.35 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
[project]
name = "IoTuring"
version = "2024.6.1"
description = "Your Windows, Linux, macOS computer as MQTT and HomeAssistant integration."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "COPYING"}
keywords = ["iot","mqtt","monitor","homeassistant"]
authors = [
{name = "richibrics", email = "riccardo.briccola.dev@gmail.com"},
{name = "infeeeee", email = "gyetpet@mailbox.org"}
]
maintainers = [
{name = "richibrics", email = "riccardo.briccola.dev@gmail.com"},
{name = "infeeeee", email = "gyetpet@mailbox.org"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: System :: Monitoring"
]
dependencies = [
"paho-mqtt>=2.0.0",
"psutil",
"PyYAML",
"requests",
"InquirerPy",
"PyObjC; sys_platform == 'darwin'",
"IoTuring-applesmc; sys_platform == 'darwin'",
"tinyWinToast; sys_platform == 'win32'"
]
[project.optional-dependencies]
test = [
"pytest"
]
[project.urls]
homepage = "https://github.com/richibrics/IoTuring"
documentation = "https://github.com/richibrics/IoTuring"
repository = "https://github.com/richibrics/IoTuring"
changelog = "https://github.com/richibrics/IoTuring/releases"
[project.scripts]
IoTuring = "IoTuring:loop"
[build-system]
requires = ["setuptools", "wheel"]
[tool.setuptools.package-data]
"*" = ["entities.yaml", "icon.png"]