2023-06-27 19:52:59 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
2023-06-27 20:03:02 +00:00
|
|
|
name = "Spectrometer"
|
2023-06-27 20:20:27 +00:00
|
|
|
version = "0.0.2"
|
2023-06-27 19:52:59 +00:00
|
|
|
authors = [
|
|
|
|
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
|
|
|
]
|
|
|
|
|
|
|
|
description = "A module for the NQRduck program (a simple python script™) to control different NQR/NMR spectrometers."
|
|
|
|
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",
|
|
|
|
"pyqt5",
|
|
|
|
"NQRduck",
|
|
|
|
]
|
|
|
|
|