nqrduck-broadband/pyproject.toml

56 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2023-06-27 19:53:24 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nqrduck-broadband"
2024-05-05 14:00:20 +00:00
version = "0.0.14"
2023-06-27 19:53:24 +00:00
authors = [
2024-04-17 19:02:49 +00:00
{ name="jupfi", email="support@nqrduck.cool" },
2023-06-27 19:53:24 +00:00
]
2024-04-17 19:02:49 +00:00
description = "A module for the NQRduck program (a simple python script™) to do broadband magnetic resonance measurements."
2023-06-27 19:53:24 +00:00
readme = "README.md"
license = { file="LICENSE" }
2024-04-28 05:38:28 +00:00
requires-python = ">=3.10"
2023-06-27 19:53:24 +00:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
2023-07-08 12:29:25 +00:00
"pyqt6",
2024-04-17 19:02:49 +00:00
"nqrduck",
2024-04-17 19:12:49 +00:00
"nqrduck-spectrometer",
2023-06-27 19:53:24 +00:00
]
2023-07-03 18:26:08 +00:00
[project.entry-points."nqrduck"]
"nqrduck-broadband" = "nqrduck_broadband.broadband:Broadband"
2024-04-17 19:02:49 +00:00
[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-broadband/issues"
"Source Code" = "https://github.com/nqrduck/nqrduck-broadband"
[tool.hatch.build.targets.wheel]
packages = ["src/nqrduck_broadband"]