From 7069111e21fb71ef8bc50a698e01e34d31bcacce Mon Sep 17 00:00:00 2001 From: atse Date: Wed, 10 Jul 2024 15:13:18 +0800 Subject: [PATCH] Expose frontend scripts exclusively in pytec --- pytec/pyproject.toml | 2 +- pytec/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pytec/pyproject.toml b/pytec/pyproject.toml index 73ce527..9922950 100644 --- a/pytec/pyproject.toml +++ b/pytec/pyproject.toml @@ -15,7 +15,7 @@ tec_qt = "tec_qt:main" [tool.setuptools] packages.find = {} -py-modules = ["aioexample", "autotune", "example", "plot", "tec_qt", "ui_tec_qt", "waitingspinnerwidget"] +py-modules = ["autotune", "plot", "tec_qt"] [tool.setuptools.package-data] "*" = ["*.*"] diff --git a/pytec/setup.py b/pytec/setup.py index 4ac8f58..7e3828f 100644 --- a/pytec/setup.py +++ b/pytec/setup.py @@ -14,5 +14,5 @@ setup( "tec_qt = tec_qt:main", ] }, - py_modules=['tec_qt', 'ui_tec_qt', 'autotune', 'waitingspinnerwidget'], + py_modules=['autotune', 'plot', 'tec_qt'], )