nqrduck-autotm/pyproject.toml

33 lines
735 B
TOML
Raw Normal View History

2023-03-23 15:08:59 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nqrduck-autotm"
2023-03-23 15:08:59 +00:00
version = "0.0.1"
authors = [
{ name="Julia Pfitzer", email="git@jupfi.me" },
]
2023-06-27 19:53:41 +00:00
description = "A module for the NQRduck program (a simple python script™) for automatic Tuning and Matching (TM) system used for NQR spectroscopy."
2023-03-23 15:08:59 +00:00
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",
"pyqt6",
2023-03-23 15:08:59 +00:00
"NQRduck",
2023-07-31 11:20:14 +00:00
"pyserial",
2023-03-23 15:08:59 +00:00
]
[project.entry-points."nqrduck"]
"nqrduck-autotm" = "nqrduck_autotm.autotm:AutoTM"