-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (70 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (70 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meshtui"
version = "0.2.11"
authors = [
{ name="Emiel Kollof", email="emiel@kollof.nl" },
]
description = "Terminal User Interface for MeshCore companion radios"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Ham Radio",
"Topic :: Terminals",
]
keywords = ["mesh", "radio", "tui", "terminal", "meshcore", "lora"]
license = "MIT"
license-files = ["LICENSE*"]
dependencies = [
"meshcore >= 2.1.9",
"textual >= 0.50.0",
"requests >= 2.28.0",
"aiohttp >= 3.9.0",
]
[project.urls]
Homepage = "https://ekollof.github.io/meshtui"
Issues = "https://github.com/ekollof/meshtui/issues"
Repository = "https://github.com/ekollof/meshtui"
[project.scripts]
meshtui = "meshtui.app:main"
meshcore-tcp-proxy = "meshtui.proxy.__main__:main"
[project.optional-dependencies]
dev = [
"pytest >= 7.0.0",
"pytest-asyncio >= 0.21.0",
"pytest-cov >= 4.0.0",
"pytest-mock >= 3.10.0",
]
proxy = [
"pyserial >= 3.5",
"pyserial-asyncio >= 0.6",
"pyyaml >= 6.0",
]
notifications = [
"notify2 >= 0.3.1",
"dbus-python >= 1.2.18",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
addopts = [
"-v",
"--cov=src/meshtui",
"--cov-report=term-missing",
"--cov-report=html",
]