gain-viz/pyproject.toml

51 lines
970 B
TOML
Raw Permalink Normal View History

G
2025-09-23 15:15:02 -04:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
G
2025-09-23 15:57:37 -04:00
name = "gain_viz"
G
2025-09-23 15:15:02 -04:00
version = "0.1.0"
description = "Interactive srsRAN_Project gnb gain control and spectrum visualization tool"
authors = [
{ name = "Qoherent Inc.", email = "info@qoherent.ai" }
]
maintainers = [
{ name = "Gael Kamga", email = "gael@qoherent.ai" },
{ name = "Ashkan Beigi", email = "ash@qoherent.ai" },
]
keywords = [
"radio",
"rf",
"sdr",
"software-defined radio",
"5G",
"gnb",
"gNodeB",
"srsRAN_Project",
"SCM",
"SignalCraft Conditioning Mpdule",
"USRP"
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"flask",
"matplotlib",
"numpy",
"pyzmq",
"pyserial"
]
[project.scripts]
G
2025-09-23 15:57:37 -04:00
gain_viz = "gain_viz.app:main"
G
2025-09-23 15:15:02 -04:00
[tool.setuptools.packages.find]
where = ["."]
G
2025-09-23 15:57:37 -04:00
include = ["gain_viz*"]
G
2025-09-23 15:15:02 -04:00
[tool.setuptools.package-data]
G
2025-09-23 15:57:37 -04:00
"gain_viz" = ["templates/*", "static/*"]