2023-07-17 08:18:06 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "nqrduck-measurement"
|
2024-04-18 17:48:53 +00:00
|
|
|
version = "0.0.2"
|
2023-07-17 08:18:06 +00:00
|
|
|
authors = [
|
2024-04-18 17:48:53 +00:00
|
|
|
{ name="jupfi", email="support@nqrduck.cool" },
|
2023-07-17 08:18:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
description = "A module for the NQRduck program (a simple python script™) to perform single frequency measurements."
|
|
|
|
readme = "README.md"
|
|
|
|
license = { file="LICENSE" }
|
2024-04-18 17:48:53 +00:00
|
|
|
requires-python = ">=3.10"
|
2023-07-17 08:18:06 +00:00
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
"matplotlib",
|
|
|
|
"pyqt6",
|
2024-01-03 14:25:31 +00:00
|
|
|
"sympy",
|
2024-04-18 17:48:53 +00:00
|
|
|
"nqrduck",
|
2024-01-03 14:25:31 +00:00
|
|
|
"nqrduck-pulseprogrammer",
|
|
|
|
"nqrduck-spectrometer",
|
2023-07-17 08:18:06 +00:00
|
|
|
]
|
|
|
|
|
2024-03-30 15:24:40 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"black",
|
|
|
|
"pydocstyle",
|
|
|
|
"pyupgrade",
|
|
|
|
"ruff",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2023-07-17 08:18:06 +00:00
|
|
|
[project.entry-points."nqrduck"]
|
2024-03-30 15:24:40 +00:00
|
|
|
"nqrduck-measurement" = "nqrduck_measurement.measurement:Measurement"
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
exclude = [
|
|
|
|
"widget.py",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
extend-select = [
|
|
|
|
"UP", # pyupgrade
|
|
|
|
"D", # pydocstyle
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
|
|
"__init__.py" = ["F401"]
|
|
|
|
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
2024-04-18 17:48:53 +00:00
|
|
|
convention = "google"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://nqrduck.cool"
|
|
|
|
"Bug Tracker" = "https://github.com/nqrduck/nqrduck-measurement/issues"
|
|
|
|
"Source Code" = "https://github.com/nqrduck/nqrduck-measurement"
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/nqrduck_measurement"]
|