2023-06-27 19:52:59 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
2023-07-03 18:25:05 +00:00
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
2023-06-27 19:52:59 +00:00
|
|
|
[project]
|
2023-06-28 12:01:55 +00:00
|
|
|
name = "nqrduck-spectrometer"
|
2024-05-27 17:30:59 +00:00
|
|
|
version = "0.0.12"
|
2023-06-27 19:52:59 +00:00
|
|
|
authors = [
|
2024-04-18 17:28:26 +00:00
|
|
|
{ name="jupfi", email="support@nqruck.cool" },
|
2023-06-27 19:52:59 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
description = "A module for the NQRduck program (a simple python script™) to control different NQR/NMR spectrometers."
|
|
|
|
readme = "README.md"
|
|
|
|
license = { file="LICENSE" }
|
2024-04-18 17:28:26 +00:00
|
|
|
requires-python = ">=3.10"
|
2023-06-27 19:52:59 +00:00
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
"matplotlib",
|
2023-07-08 12:38:10 +00:00
|
|
|
"pyqt6",
|
2024-04-18 17:28:26 +00:00
|
|
|
"nqrduck",
|
2023-07-22 19:08:19 +00:00
|
|
|
"sympy",
|
|
|
|
"numpy",
|
|
|
|
"scipy",
|
2023-06-27 19:52:59 +00:00
|
|
|
]
|
|
|
|
|
2024-04-01 08:55:46 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"black",
|
|
|
|
"pydocstyle",
|
|
|
|
"pyupgrade",
|
|
|
|
"ruff",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
exclude = [
|
|
|
|
"widget.py",
|
|
|
|
"base_spectrometer_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"
|
|
|
|
|
2023-07-03 18:25:05 +00:00
|
|
|
[project.entry-points."nqrduck"]
|
2024-04-18 17:28:26 +00:00
|
|
|
"nqrduck-spectrometer" = "nqrduck_spectrometer.spectrometer:Spectrometer"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://nqrduck.cool"
|
|
|
|
"Bug Tracker" = "https://github.com/nqrduck/nqrduck-spectrometer/issues"
|
|
|
|
"Source Code" = "https://github.com/nqrduck/nqrduck-spectrometer"
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/nqrduck_spectrometer"]
|