-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.09 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
[build-system]
requires = [
"setuptools>=61",
"wheel",
"setuptools-scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/tedge/agent/_version.py"
[project]
name = "tedge-agent"
description = "thin-edge.io python connector"
readme = "README.md"
authors = [
{name = "thin-edge.io team", email = "info@thin-edge.io"}
]
license.file = "LICENSE"
requires-python = ">=3.7"
keywords = ["device"]
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = [
"paho-mqtt >= 1.6.1, < 1.7.0",
"requests >= 2.31.0, < 2.32.0",
"psutil >= 5.9.4, < 5.10.0",
"python-dotenv >= 0.20.0, < 0.21.0",
"importlib-metadata >= 6.0.0, < 7.0.0; python_version<'3.8'",
]
[project.urls]
"Homepage" = "https://github.com/thin-edge.io/python-tedge-agent"
"Bug Reports" = "https://github.com/thin-edge.io/python-tedge-agent/issues"
"Source" = "https://github.com/thin-edge.io/python-tedge-agent/"
[project.scripts]
python-tedge-agent = "tedge.agent:__main__"
[project.optional-dependencies]
dev = [
"black",
"pylint",
]