gain-viz/pyproject.toml
2025-09-23 15:57:37 -04:00

51 lines
970 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gain_viz"
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]
gain_viz = "gain_viz.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["gain_viz*"]
[tool.setuptools.package-data]
"gain_viz" = ["templates/*", "static/*"]