mirror of
https://github.com/bec-project/bec_widgets.git
synced 2025-07-13 19:21:50 +02:00
14 lines
302 B
Python
14 lines
302 B
Python
from setuptools import setup
|
|
|
|
__version__ = "0.2.0"
|
|
|
|
if __name__ == "__main__":
|
|
setup(
|
|
install_requires=[
|
|
"pyqt5",
|
|
"pyqtgraph",
|
|
],
|
|
extras_require={"dev": ["pytest", "pytest-random-order", "coverage", "pytest-qt"]},
|
|
version=__version__,
|
|
)
|