fix: fixed bec_utils dependency

This commit is contained in:
wakonig_k 2023-06-01 19:53:40 +02:00
parent 7604797b32
commit f000f1c87a
5 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve() current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/" utils = f"{current_path}/../bec_client_lib/"
bec_client_lib = f"{current_path}/../bec_client_lib/" bec_client_lib = f"{current_path}/../bec_client_lib/"
if __name__ == "__main__": if __name__ == "__main__":

View File

@ -6,7 +6,7 @@ from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve() current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/" utils = f"{current_path}/../bec_client_lib/"
ophyd_devices = os.getenv("OPHYD_DEVICES_PATH", f"{current_path}/../../ophyd_devices/") ophyd_devices = os.getenv("OPHYD_DEVICES_PATH", f"{current_path}/../../ophyd_devices/")

View File

@ -5,7 +5,7 @@ from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve() current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/" utils = f"{current_path}/../bec_client_lib/"
if __name__ == "__main__": if __name__ == "__main__":
setup(install_requires=["numpy", "h5py", "xmltodict"]) setup(install_requires=["numpy", "h5py", "xmltodict"])

View File

@ -5,7 +5,7 @@ from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve() current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/" utils = f"{current_path}/../bec_client_lib/"
if __name__ == "__main__": if __name__ == "__main__":
setup(install_requires=["numpy"]) setup(install_requires=["numpy"])

View File

@ -5,7 +5,7 @@ from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve() current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/" utils = f"{current_path}/../bec_client_lib/"
if __name__ == "__main__": if __name__ == "__main__":
setup(install_requires=["numpy", "cytoolz", "rich", "matplotlib"]) setup(install_requires=["numpy", "cytoolz", "rich", "matplotlib"])