Switch to pyproject.toml

This commit is contained in:
atse 2023-09-14 17:33:10 +08:00 committed by Tse Kwok Yan
parent b46856b285
commit 0e83a8daaf
2 changed files with 19 additions and 0 deletions

View File

@ -94,6 +94,7 @@
thermostat_gui = pkgs.python3Packages.buildPythonPackage {
pname = "thermostat_gui";
version = "0.0.0";
format = "pyproject";
src = "${self}/pytec";
nativeBuildInputs = [ pkgs.qt6.wrapQtAppsHook ];

18
pytec/pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pytec"
version = "0.0"
authors = [{name = "M-Labs"}]
description = "Control TEC"
urls.Repository = "https://git.m-labs.hk/M-Labs/thermostat"
license = {text = "GPLv3"}
[project.gui-scripts]
tec_qt = "tec_qt:main"
[tool.setuptools]
packages.find = {}
py-modules = ["tec_qt", "ui_tec_qt", "autotune", "waitingspinnerwidget"]