nqrduck-module/pyproject.toml

52 lines
1 KiB
TOML
Raw Normal View History

2023-11-24 07:56:42 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nqrduck-module"
2024-04-17 19:26:18 +00:00
version = "0.0.2"
2023-11-24 07:56:42 +00:00
authors = [
2024-04-17 19:26:18 +00:00
{ name="jupfi", email="support@nqrduck.cool" },
2023-11-24 07:56:42 +00:00
]
2024-04-17 19:26:18 +00:00
description = "A template for nqrduck modules. Also used for testing."
2023-11-24 07:56:42 +00:00
readme = "README.md"
license = { file="LICENSE" }
2024-04-28 05:37:38 +00:00
requires-python = ">=3.10"
2023-11-24 07:56:42 +00:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
2024-02-22 10:59:34 +00:00
"Operating System :: OS Independent",
2023-11-24 07:56:42 +00:00
]
dependencies = [
"matplotlib",
"pyqt6",
"nqrduck",
]
[project.entry-points."nqrduck"]
"nqrduck-module" = "nqrduck_module.module:module"
2024-04-17 19:26:18 +00:00
[tool.ruff]
exclude = [
"widget.py",
]
[tool.ruff.lint]
extend-select = [
"UP", # pyupgrade
"D", # pydocstyle
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[project.urls]
"Homepage" = "https://nqrduck.cool"
"Bug Tracker" = "https://github.com/nqrduck/nqrduck-module/issues"
"Source Code" = "https://github.com/nqrduck/nqrduck-module"
[tool.hatch.build.targets.wheel]
packages = ["src/nqrduck_module"]