mirror of
https://github.com/nqrduck/nqrduck-autotm.git
synced 2024-12-21 23:30:27 +00:00
initial commit
This commit is contained in:
commit
fdd231e99b
2 changed files with 32 additions and 0 deletions
28
pyproject.toml
Normal file
28
pyproject.toml
Normal 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
4
src/AutoTM/AutoTM.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
from nqrduck.module.module_model import ModuleModel
|
||||
|
||||
class AutoTM(ModuleModel):
|
||||
|
Loading…
Reference in a new issue