fix: added pyepics dependency

This commit is contained in:
wakonig_k 2023-09-01 10:00:52 +02:00
parent 8aca683e05
commit 66d283baeb

View File

@ -4,7 +4,15 @@ __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",
"pyepics",
],
extras_require={"dev": ["pytest", "pytest-random-order", "black"]},
version=__version__,
)