2023-08-24 06:12:58 +00:00
[ build-system ]
requires = [ "hatchling" ]
build-backend = "hatchling.build"
[ tool . hatch . metadata ]
allow-direct-references = true
[ project ]
name = "nqrduck-spectrometer-simulator"
2023-08-24 08:07:09 +00:00
version = "0.0.2"
2023-08-24 06:12:58 +00:00
authors = [
{ name = "Julia Pfitzer" , email = "git@jupfi.me" } ,
]
description = "A submodule for the nqrduck-spectrometer module which implements the functionality of a NQR bloch simulator. This should enable easy simulation of NQR experiments."
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" ,
"pyqt6" ,
2023-08-24 08:07:09 +00:00
"numpy" ,
"nqr_blochsimulator@git+https://github.com/jupfi/nqr-blochsimulator.git" ,
2023-08-24 06:12:58 +00:00
]
[ project . entry-points . "nqrduck" ]
"nqrduck-spectrometer-simulator" = "nqrduck_spectrometer_simulator.simulator:Simulator"