first puch for recon_plot
This commit is contained in:
10
setup.py
10
setup.py
@ -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"]},
|
||||
|
Reference in New Issue
Block a user