-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 954 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
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "foris-controller-haas-module"
dynamic = ["version"]
description = "haas module for Foris Controller"
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{ name = "CZ.NIC, z.s.p.o. (https://www.nic.cz/)", email = "packaging@turris.cz" },
]
dependencies = [
"foris-controller",
]
[project.optional-dependencies]
mqtt = [
"paho-mqtt",
]
tests = [
"pytest",
"ubus",
"paho-mqtt",
"foris-client",
"foris-controller-testtools",
]
ubus = [
"ubus",
]
[tool.hatch.version]
path = "foris_controller_haas_module/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/foris_controller_modules",
"/foris_controller_backends",
"/foris_controller_haas_module",
]
[tool.hatch.build.targets.wheel]
include = [
"/foris_controller_modules",
"/foris_controller_backends",
"/foris_controller_haas_module",
]