ophyd_devices/setup.py
semantic-release b5fa9a8fb4 0.9.1
Automatically generated by python-semantic-release
2023-11-02 12:02:18 +00:00

20 lines
432 B
Python

from setuptools import setup
__version__ = "0.9.1"
if __name__ == "__main__":
setup(
install_requires=[
"ophyd",
"typeguard",
"prettytable",
"bec_lib",
"numpy",
"pyyaml",
"std_daq_client",
"pyepics",
],
extras_require={"dev": ["pytest", "pytest-random-order", "black"]},
version=__version__,
)