forked from M-Labs/artiq
pxi6733: add pydaqmx dependency + controller in entry points
This commit is contained in:
parent
a642a6bf01
commit
979cd14547
|
@ -20,6 +20,7 @@ build:
|
|||
- pdq2_client = artiq.frontend.pdq2_client:main
|
||||
- pdq2_controller = artiq.frontend.pdq2_controller:main
|
||||
- thorlabs_tcube_controller = artiq.frontend.thorlabs_tcube_controller:main
|
||||
- pxi6733_controller = artiq.frontend.pxi6733_controller:main
|
||||
- artiq_gui = artiq.frontend.artiq_gui:main # [not win]
|
||||
|
||||
requirements:
|
||||
|
@ -39,6 +40,7 @@ requirements:
|
|||
- sphinx-argparse
|
||||
- h5py
|
||||
- dateutil
|
||||
- pydaqmx
|
||||
- gbulb-artiq # [not win]
|
||||
- cairoplot3-artiq # [not win]
|
||||
|
||||
|
|
3
setup.py
3
setup.py
|
@ -6,7 +6,7 @@ import os
|
|||
|
||||
requirements = [
|
||||
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",
|
||||
"python-dateutil", "prettytable", "h5py"
|
||||
"python-dateutil", "prettytable", "h5py", "pydaqmx"
|
||||
]
|
||||
|
||||
scripts = [
|
||||
|
@ -21,6 +21,7 @@ scripts = [
|
|||
"pdq2_client=artiq.frontend.pdq2_client:main",
|
||||
"pdq2_controller=artiq.frontend.pdq2_controller:main",
|
||||
"thorlabs_tcube_controller=artiq.frontend.thorlabs_tcube_controller:main",
|
||||
"pxi6733_controller=artiq.frontend.pxi6733_controller:main"
|
||||
]
|
||||
|
||||
if os.getenv("ARTIQ_GUI") == "1":
|
||||
|
|
Loading…
Reference in New Issue