first puch for recon_plot

This commit is contained in:
stalbe_j
2023-04-14 08:22:05 +02:00
parent a80b568894
commit e75119093c
5 changed files with 239 additions and 0 deletions

View File

@ -1,6 +1,16 @@
import os
import pathlib
import subprocess
from setuptools import setup
CURRENT_PATH = pathlib.Path(__file__).parent.resolve()
bec_utils = os.path.join(os.getenv("BEC_PATH", f"{CURRENT_PATH}/../bec"), "bec_utils")
if __name__ == "__main__":
subprocess.run(f"pip install -e {bec_utils}", shell=True, check=True)
setup(
install_requires=["pyqt5", "pyqtgraph", "h5py", "PyQtWebEngine"],
entry_points={"console_scripts": ["grum=grum:main"]},