-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (62 loc) · 2.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
sources = ["src"]
[project]
name = "sdrterm"
version = "0.4.1"
dependencies = [
'scipy',
'numpy>=1.26',
'typer-slim',
'psutil',
'numba>=0.60.0'
]
requires-python = ">=3.10"
authors = [
{ name = "Patrick Eads", email = "[email protected]" },
]
maintainers = [
{ name = "Patrick Eads", email = "[email protected]" },
]
description = "Terminal-based tools for (mostly SDR-originated) signal analysis"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ['sdr', 'sdrterm', 'rtl', 'rtlsdr', 'rtl-sdr', 'software-defined radio', 'signal analysis', 'sigint',
'dsp', 'signal processing', 'communications', 'radio']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 11',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Audio',
'Topic :: System :: Networking',
'Topic :: Utilities',
'Typing :: Typed'
]
[project.optional-dependencies]
gui = ["pyqtgraph", "PyQt5"]
cli = ["textual", "textual-slider"]
compiled = ["Cython", "setuptools"]
[project.urls]
Homepage = "https://github.com/peads/sdrterm"
Repository = "https://github.com/peads/sdrterm.git"
"Bug Tracker" = "https://github.com/peads/sdrterm/issues"