0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

build: added all .ui and .yaml files to pypi install; removed gauss_bpm from default config from monitor.py

This commit is contained in:
wyzula-jan
2024-02-08 10:59:48 +01:00
parent 11ae0b1054
commit 968da6f558
2 changed files with 10 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# pylint: disable= missing-module-docstring
from setuptools import setup
from setuptools import setup, find_packages
__version__ = "0.38.2"
@ -37,4 +37,7 @@ if __name__ == "__main__":
"pyqt6": ["PyQt6>=6.0"],
},
version=__version__,
packages=find_packages(),
include_package_data=True,
package_data={"": ["*.ui", "*.yaml"]},
)