nqrduck-pulseprogrammer/pyproject.toml

55 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2023-07-07 13:07:27 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nqrduck-pulseprogrammer"
2024-05-05 13:54:19 +00:00
version = "0.0.4"
2023-07-07 13:07:27 +00:00
authors = [
2024-04-18 17:45:45 +00:00
{ name="jupfi", email="support@nqrduck.cool" },
2023-07-07 13:07:27 +00:00
]
description = "A module for the NQRduck program (a simple python script™) to do pulse programming."
readme = "README.md"
license = { file="LICENSE" }
2024-04-18 17:45:45 +00:00
requires-python = ">=3.10"
2023-07-07 13:07:27 +00:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
"pyqt6",
2023-07-11 11:58:55 +00:00
"nqrduck-spectrometer",
2023-07-07 13:07:27 +00:00
]
[project.entry-points."nqrduck"]
"nqrduck-pulseprogrammer" = "nqrduck_pulseprogrammer.pulseprogrammer:pulse_programmer"
2024-04-18 17:45:45 +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-pulseprogrammer/issues"
"Source Code" = "https://github.com/nqrduck/nqrduck-pulseprogrammer"
[tool.hatch.build.targets.wheel]
packages = ["src/nqrduck_pulseprogrammer"]