initial commit

This commit is contained in:
jupfi 2023-03-23 16:08:59 +01:00
commit fdd231e99b
2 changed files with 32 additions and 0 deletions

28
pyproject.toml Normal file
View file

@ -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",
]

4
src/AutoTM/AutoTM.py Normal file
View file

@ -0,0 +1,4 @@
from nqrduck.module.module_model import ModuleModel
class AutoTM(ModuleModel):