ophyd_devices/setup.py

19 lines
402 B
Python

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