nqrduck-spectrometer-simulator/pyproject.toml

34 lines
No EOL
941 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "nqrduck-spectrometer-simulator"
version = "0.0.2"
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",
"numpy",
"nqr_blochsimulator@git+https://github.com/jupfi/nqr-blochsimulator.git",
]
[project.entry-points."nqrduck"]
"nqrduck-spectrometer-simulator" = "nqrduck_spectrometer_simulator.simulator:Simulator"