feat: added dev install to setup.py

This commit is contained in:
2023-06-28 13:02:02 +02:00
parent 020459ed90
commit 412a0e4480
2 changed files with 17 additions and 9 deletions

View File

@ -1,4 +1,10 @@
from setuptools import setup
__version__ = "0.0.1"
if __name__ == "__main__":
setup(install_requires=["ophyd", "typeguard", "prettytable", "pytest"])
setup(
install_requires=["ophyd", "typeguard", "prettytable", "bec_lib"],
extras_require={"dev": ["pytest", "pytest-random-order"]},
version=__version__,
)