fix: add std_daq_client and pyepics to setup

This commit is contained in:
appel_c 2023-08-31 17:09:43 +02:00
parent fe404bff9c
commit 5d86382d80

View File

@ -4,7 +4,16 @@ __version__ = "0.4.0"
if __name__ == "__main__":
setup(
install_requires=["ophyd", "typeguard", "prettytable", "bec_lib", "numpy", "pyyaml"],
install_requires=[
"ophyd",
"typeguard",
"prettytable",
"bec_lib",
"numpy",
"pyyaml",
"std_daq_client",
"pyepics",
],
extras_require={"dev": ["pytest", "pytest-random-order", "black"]},
version=__version__,
)