-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.28 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
44
45
46
47
48
# SPDX-FileCopyrightText: 2022 Alec Delaney, written for Adafruit Industries
# SPDX-FileCopyrightText: 2026 ThingsBoard
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm",
]
[project]
name = "thingsboard-circuitpython-client-sdk"
description = "ThingsBoard CircuitPython client SDK"
version = "0.0.1"
readme = "README.rst"
authors = [
{name = "ThingsBoard Inc.", email = "vitalikbidochka@gmail.com"}
]
urls = {Homepage = "https://github.com/thingsboard/CircuitPython_thingsboard-client-sdk"}
keywords = [
"adafruit",
"blinka",
"circuitpython",
"micropython",
"thingsboard-client-sdk",
"thingsboard",
"iot",
"mqtt",
]
license = {text = "Apache 2.0"}
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools]
py-modules = ["tb_device_mqtt"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}