[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "nqrduck-pulseprogrammer" version = "0.0.4" authors = [ { name="jupfi", email="support@nqrduck.cool" }, ] description = "A module for the NQRduck program (a simple python scriptâ„¢) to do pulse programming." readme = "README.md" license = { file="LICENSE" } requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] dependencies = [ "matplotlib", "pyqt6", "nqrduck-spectrometer", ] [project.entry-points."nqrduck"] "nqrduck-pulseprogrammer" = "nqrduck_pulseprogrammer.pulseprogrammer:pulse_programmer" [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"]