ophyd_devices/setup.py
semantic-release 0ac0f1426c 0.15.0
Automatically generated by python-semantic-release
2023-12-12 10:37:51 +00:00

22 lines
541 B
Python

from setuptools import setup
__version__ = "0.15.0"
if __name__ == "__main__":
setup(
install_requires=[
"ophyd",
"typeguard",
"prettytable",
"bec_lib",
"numpy",
"pyyaml",
"std_daq_client",
"pyepics",
"pytest",
],
extras_require={"dev": ["pytest", "pytest-random-order", "black", "coverage"]},
package_data={"ophyd_devices.smaract": ["smaract_sensors.json"]},
version=__version__,
)