nqrduck-broadband/pyproject.toml
2023-07-08 14:29:25 +02:00

30 lines
695 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nqrduck-broadband"
version = "0.0.12"
authors = [
{ name="Julia Pfitzer", email="git@jupfi.me" },
]
description = "A module for the NQRduck program (a simple python script™) to do broadband NQR measurements."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
"pyqt6",
"NQRduck",
]
[project.entry-points."nqrduck"]
"nqrduck-broadband" = "nqrduck_broadband.broadband:Broadband"