mirror of
https://github.com/nqrduck/nqrduck-pulseprogrammer.git
synced 2024-11-08 19:00:02 +00:00
31 lines
715 B
TOML
31 lines
715 B
TOML
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[project]
|
||
|
name = "nqrduck-pulseprogrammer"
|
||
|
version = "0.0.1"
|
||
|
authors = [
|
||
|
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
||
|
]
|
||
|
|
||
|
description = "A module for the NQRduck program (a simple python script™) to do pulse programming."
|
||
|
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",
|
||
|
]
|
||
|
|
||
|
[project.entry-points."nqrduck"]
|
||
|
"nqrduck-pulseprogrammer" = "nqrduck_pulseprogrammer.pulseprogrammer:PulseProgrammer"
|