mirror of
https://github.com/ivan-usov-org/bec.git
synced 2025-04-21 18:20:01 +02:00
22 lines
619 B
Python
22 lines
619 B
Python
import pathlib
|
|
import subprocess
|
|
|
|
from setuptools import setup
|
|
|
|
current_path = pathlib.Path(__file__).parent.resolve()
|
|
|
|
utils = f"{current_path}/../bec_lib/"
|
|
|
|
__version__ = "0.14.4"
|
|
|
|
if __name__ == "__main__":
|
|
setup(
|
|
install_requires=["numpy", "pyyaml", "msgpack"],
|
|
version=__version__,
|
|
entry_points={"console_scripts": ["bec-scan-bundler = scan_bundler:main"]},
|
|
extras_require={"dev": ["pytest", "pytest-random-order", "coverage", "black", "pylint"]},
|
|
)
|
|
local_deps = [utils]
|
|
for dep in local_deps:
|
|
subprocess.run(f"pip install -e {dep}", shell=True, check=True)
|