bec/bec_client/setup.py
2022-06-22 12:03:55 +02:00

15 lines
405 B
Python

import pathlib
import subprocess
from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/"
if __name__ == "__main__":
setup(install_requires=["numpy", "msgpack", "requests", "typeguard", "pyyaml", "redis"])
local_deps = [utils]
for dep in local_deps:
subprocess.run(f"pip install -e {dep}", shell=True, check=True)