-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (29 loc) · 929 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "hamptt"
version = "0.3.1"
description = "Implementation of Push-To-Talk board for ham radio transmitters like Baofeng UV-5R"
authors = ["mrkeuz <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mrkeuz/hamptt/"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Communications :: Ham Radio",
"Topic :: Utilities"
]
[tool.poetry.urls]
"Documentation" = "https://github.com/mrkeuz/hamptt/"
[tool.poetry.dependencies]
python = "^3.8"
func_timeout = ">= 4.3.5"
PyBluez = { version = ">= 0.23", optional = true }
[tool.poetry.extras]
bt = ["PyBluez"]
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"