mirror of
https://github.com/nqrduck/nqrduck-autotm.git
synced 2024-11-05 01:40:01 +00:00
28 lines
635 B
TOML
28 lines
635 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "nqrduck-autotm"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
|
]
|
|
|
|
description = "A module for the NQRduck program (a simple python script™) for 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",
|
|
]
|
|
|