2023-11-24 07:56:42 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "nqrduck-module"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = [
|
2024-02-24 11:35:04 +00:00
|
|
|
{ name="YOUR_NAME", email="YOUR@EMAIL.cool" },
|
2023-11-24 07:56:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
description = "A template for nqrduck modules."
|
|
|
|
readme = "README.md"
|
|
|
|
license = { file="LICENSE" }
|
|
|
|
requires-python = ">=3.8"
|
|
|
|
|
|
|
|
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"
|