ophyd_devices/setup.py
semantic-release 3fd089b98b 0.10.0
Automatically generated by python-semantic-release
2023-11-08 18:34:59 +00:00

20 lines
445 B
Python

from setuptools import setup
__version__ = "0.10.0"
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", "coverage"]},
version=__version__,
)