mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2025-06-13 14:57:14 +02:00
feat: added dev install to setup.py
This commit is contained in:
8
setup.py
8
setup.py
@ -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__,
|
||||
)
|
||||
|
Reference in New Issue
Block a user