2023-07-03 06:52:06 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "nqrduck-spectrometer-limenqr"
|
2024-05-22 10:43:53 +00:00
|
|
|
version = "0.0.7"
|
2023-07-03 06:52:06 +00:00
|
|
|
authors = [
|
2024-04-23 16:06:12 +00:00
|
|
|
{ name="jupfi", email="support@nqrduck.cool" },
|
2023-07-03 06:52:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
description = "A submodule for the nqrduck-spectrometer module which implements the functionality for the LimeNQR spectrometer."
|
|
|
|
readme = "README.md"
|
|
|
|
license = { file="LICENSE" }
|
2024-04-26 15:32:13 +00:00
|
|
|
requires-python = ">=3.10"
|
2023-07-03 06:52:06 +00:00
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
2024-04-23 16:06:12 +00:00
|
|
|
"Operating System :: POSIX :: Linux",
|
2023-07-03 06:52:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
2024-04-23 16:06:12 +00:00
|
|
|
"limedriver",
|
2023-07-03 06:52:06 +00:00
|
|
|
"nqrduck-spectrometer",
|
2023-07-08 12:38:14 +00:00
|
|
|
"pyqt6",
|
2023-07-14 13:08:36 +00:00
|
|
|
"h5py",
|
2023-07-31 11:20:26 +00:00
|
|
|
"pyserial",
|
2023-07-03 18:26:51 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.entry-points."nqrduck"]
|
2024-04-23 16:06:12 +00:00
|
|
|
"nqrduck-spectrometer-limenqr" = "nqrduck_spectrometer_limenqr.limenqr:LimeNQR"
|
|
|
|
|
|
|
|
[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]
|
|
|
|
convention = "google"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://nqrduck.cool"
|
|
|
|
"Bug Tracker" = "https://github.com/nqrduck/nqrduck-spectrometer-limenqr/issues"
|
|
|
|
"Source Code" = "https://github.com/nqrduck/nqrduck-spectrometer-limenqr"
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/nqrduck_spectrometer_limenqr"]
|