mirror of
https://github.com/ivan-usov-org/bec.git
synced 2025-04-21 18:20:01 +02:00
32 lines
688 B
Python
32 lines
688 B
Python
import os
|
|
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<3.0",
|
|
"pyyaml",
|
|
"redis",
|
|
"ipython",
|
|
"cytoolz",
|
|
"rich",
|
|
"pyepics",
|
|
"pylint",
|
|
"fpdf",
|
|
],
|
|
scripts=["bec_client/bin/bec"],
|
|
)
|
|
local_deps = [utils]
|
|
for dep in local_deps:
|
|
subprocess.run(f"pip install -e {dep}", shell=True, check=True)
|