-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 758 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 758 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
36
[project]
name = "PyFT8"
version = "3.6.2"
license = "GPL-3.0-or-later"
authors = [
{ name="G1OJS", email="g1ojs@yahoo.com" },
]
description = "FT8 Decoding and Encoding in Python with test/loopback code"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy>=1.24.0",
"matplotlib",
"pyaudio",
"pyserial",
"paho-mqtt",
"psutil"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
keywords = ["ham radio", "radio", "FT8", "LDPC", "CPMFSK"]
[project.urls]
Homepage = "https://github.com/G1OJS/PyFT8"
Issues = "https://github.com/G1OJS/PyFT8/issues"
[tool.setuptools]
packages = ["PyFT8"]
license-files = ["LICENSE"]
[project.scripts]
pyft8 = "PyFT8.pyft8:cli"