From fdd231e99b4b7a5702b38914a9c676d4c96454d9 Mon Sep 17 00:00:00 2001 From: jupfi Date: Thu, 23 Mar 2023 16:08:59 +0100 Subject: [PATCH] initial commit --- pyproject.toml | 28 ++++++++++++++++++++++++++++ src/AutoTM/AutoTM.py | 4 ++++ 2 files changed, 32 insertions(+) create mode 100644 pyproject.toml create mode 100644 src/AutoTM/AutoTM.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8b84ec7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,28 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "AutoTM" +version = "0.0.1" +authors = [ + { name="Julia Pfitzer", email="git@jupfi.me" }, +] + +description = "Simple Python script to interact with an automatic Tuning and Matching (TM) system used for NQR spectroscopy." +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", +] + diff --git a/src/AutoTM/AutoTM.py b/src/AutoTM/AutoTM.py new file mode 100644 index 0000000..12470f4 --- /dev/null +++ b/src/AutoTM/AutoTM.py @@ -0,0 +1,4 @@ +from nqrduck.module.module_model import ModuleModel + +class AutoTM(ModuleModel): + \ No newline at end of file