-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.4 KB
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
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "bluetooth-mesh"
version = "1.0.0"
readme = "README.rst"
requires-python = ">=3.14,<3.15"
license = "GPL-2.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Michał Lowas-Rzechonek", email = "michal.lowas-rzechonek@silvair.com" },
{ name = "Amadeusz Herzog", email = "amadeusz.hercog@silvair.com" },
{ name = "Jakub Witowski", email = "jakub.witowski@silvair.com" },
{ name = "Kamil Janowski", email = "kamil.janowski@silvair.com" },
{ name = "Przemysław Fierek", email = "przemyslaw.fierek@silvair.com" },
{ name = "Rafał Gajda", email = "rafal.gajda@silvair.com" },
{ name = "Patryk Bieleń", email = "patryk.bielen@silvair.com" }
]
dependencies = [
"bluetooth-mesh-messages>=1.0.0,<1.1.0",
"bluetooth-mesh-network>=1.0.0,<1.1.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Networking",
]
[project.optional-dependencies]
bluez = [
"bluetooth-mesh-bluez>=1.0.0,<1.1.0",
]
[tool.poetry]
package-mode = true
requires-poetry = ">=2.2.1"
packages = [{ include = "bluetooth_mesh" }]