nqrduck-spectrometer/pyproject.toml

36 lines
811 B
TOML
Raw Normal View History

2023-06-27 19:52:59 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
2023-07-03 18:25:05 +00:00
[tool.hatch.metadata]
allow-direct-references = true
2023-06-27 19:52:59 +00:00
[project]
name = "nqrduck-spectrometer"
2023-07-03 18:25:28 +00:00
version = "0.0.7"
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",
2023-07-08 12:38:10 +00:00
"pyqt6",
2023-06-27 19:52:59 +00:00
"NQRduck",
"sympy",
"numpy",
"scipy",
2023-06-27 19:52:59 +00:00
]
2023-07-03 18:25:05 +00:00
[project.entry-points."nqrduck"]
"nqrduck-spectrometer" = "nqrduck_spectrometer.spectrometer:Spectrometer"