-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 807 Bytes
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
[project]
name = "vnode"
version = "0.1.10"
description = "Virtual Meshtastic node using mudp transport and meshdb storage."
authors = [
{name = "Ben Lipsey",email = "ben@pdxlocations.com"}
]
license = "GPL-3.0-only"
readme = "README.md"
requires-python = ">=3.9,<3.15"
dependencies = [
"cryptography>=43,<45",
"meshdb>=0.1.9",
"meshtastic>=2.7,<3.0",
"mudp>=1.1.5",
]
[project.urls]
Homepage = "https://github.com/pdxlocations/vnode"
Issues = "https://github.com/pdxlocations/vnode/issues"
[project.scripts]
vnode = "vnode.cli:main"
[tool.poetry]
packages = [
{ include = "vnode", from = "vnode" },
]
include = [
{ path = "vnode/vnode/example-node.json", format = ["sdist", "wheel"] },
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"