From 4b7b35570c13766ed575f69d79bf1ded954b6886 Mon Sep 17 00:00:00 2001 From: Andrej Rode Date: Wed, 19 Oct 2016 16:41:59 -0700 Subject: gr-usrptest: add LabVIEW remote control capability - require modules labview_automation and hoplite for RTS python module - new python module: labview_control --- tools/gr-usrptest/python/setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/gr-usrptest/python/setup.py (limited to 'tools/gr-usrptest/python/setup.py') diff --git a/tools/gr-usrptest/python/setup.py b/tools/gr-usrptest/python/setup.py new file mode 100644 index 000000000..6969f413d --- /dev/null +++ b/tools/gr-usrptest/python/setup.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python +try: + from setuptools import setup +except ImportError: + from distutils.core import setup + + +setup(name='urptest_automation', + version='0.0.1', + description='usrptest integration into RTS and Labview', + packages=['usrptest_automation'], + install_requires=['labview-automation>=15.0.0.dev1','hoplite>=15.0.0.dev1'] + ) -- cgit v1.2.3