2023-07-03 06:52:06 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "nqrduck-spectrometer-limenqr"
|
2023-07-03 18:26:51 +00:00
|
|
|
version = "0.0.3"
|
2023-07-03 06:52:06 +00:00
|
|
|
authors = [
|
|
|
|
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
|
|
|
]
|
|
|
|
|
|
|
|
description = "A submodule for the nqrduck-spectrometer module which implements the functionality for the LimeNQR spectrometer."
|
|
|
|
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 = [
|
|
|
|
"nqrduck-spectrometer",
|
2023-07-08 12:38:14 +00:00
|
|
|
"pyqt6",
|
2023-07-14 13:08:36 +00:00
|
|
|
"h5py",
|
|
|
|
"serial",
|
2023-07-03 18:26:51 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.entry-points."nqrduck"]
|
|
|
|
"nqrduck-spectrometer-limenqr" = "nqrduck_spectrometer_limenqr.limenqr:LimeNQR"
|