-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
73 lines (67 loc) · 1.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "foris-controller"
dynamic = ["version"]
description = "An program which is placed in top of a message bus and translates requests to commands for backends."
readme = "README.rst"
license = { "file" = "COPYING" }
authors = [
{ name = "CZ.NIC, z.s.p.o. (http://www.nic.cz/)", email = "[email protected]" },
]
dependencies = [
"foris-schema",
"pbkdf2",
"python-prctl",
"python-slugify",
"svupdater",
"turris-timezone",
"turrishw",
]
[project.optional-dependencies]
client-socket = [
"foris-client",
]
dev = [
"cookiecutter",
"pre-commit",
"ruff",
]
mqtt = [
"paho-mqtt",
]
tests = [
"foris-client",
"foris-controller-testtools",
"paho-mqtt",
"pytest",
"ubus",
]
ubus = [
"ubus",
]
zeroconf = [
"ifaddr",
"paho-mqtt",
"zeroconf",
]
[project.scripts]
foris-controller = "foris_controller.controller.__main__:main"
foris-notify = "foris_controller.notify.__main__:main"
[project.urls]
Homepage = "https://gitlab.nic.cz/turris/foris-controller/foris-controller"
[tool.hatch.version]
path = "foris_controller/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/foris_controller",
"/foris_controller_backends",
"/foris_controller_modules",
]
[tool.hatch.build.targets.wheel]
include = [
"/foris_controller",
"/foris_controller_backends",
"/foris_controller_modules",
]