1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-12-31 19:11:18 +01:00
Files
bec_widgets/setup.py
2023-09-21 10:43:45 +02:00

11 lines
311 B
Python

from setuptools import setup
__version__ = "0.26.7"
if __name__ == "__main__":
setup(
install_requires=["pyqt5", "pyqtgraph", "bec_lib", "zmq", "h5py","epics"],
extras_require={"dev": ["pytest", "pytest-random-order", "coverage", "pytest-qt", "black"]},
version=__version__,
)