-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
48 lines (40 loc) · 1.04 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "aioax25"
dynamic = ["version"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: No Input/Output (Daemon)",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Ham Radio"
]
description = "Asynchronous AX.25 interface in pure Python using asyncio"
dependencies = [
"pyserial",
"pyserial-asyncio",
"signalslot"
]
[project.optional-dependencies]
call = [
"prompt_toolkit"
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "GPL-2.0-or-later"
[[project.authors]]
name = "Stuart Longland VK4MSL"
email = "[email protected]"
[tool.black]
line-length = 78
[tool.pytest.ini_options]
log_cli = true
[tool.setuptools.dynamic]
version = {attr = "aioax25.__version__"}