mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2025-05-25 01:40:40 +02:00
11 lines
296 B
Python
11 lines
296 B
Python
from setuptools import setup
|
|
|
|
__version__ = "0.2.1"
|
|
|
|
if __name__ == "__main__":
|
|
setup(
|
|
install_requires=["ophyd", "typeguard", "prettytable", "bec_lib", "numpy", "pyyaml"],
|
|
extras_require={"dev": ["pytest", "pytest-random-order", "black"]},
|
|
version=__version__,
|
|
)
|