Expose frontend scripts exclusively in pytec

This commit is contained in:
atse 2024-07-10 15:13:18 +08:00
parent 1707728c3c
commit 7069111e21
2 changed files with 2 additions and 2 deletions

View File

@ -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]
"*" = ["*.*"]

View File

@ -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'],
)