]> jspc29.x-matter.uni-frankfurt.de Git - labtools.git/commitdiff
opus20: use entry_points in setup.py, not scripts
authorPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Mon, 14 Aug 2017 11:25:21 +0000 (13:25 +0200)
committerPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Mon, 14 Aug 2017 11:25:21 +0000 (13:25 +0200)
opus20/opus20/opus20_cli.py [moved from opus20/scripts/opus20_cli with 95% similarity]
opus20/opus20/opus20_discovery.py [moved from opus20/scripts/opus20_discovery with 100% similarity]
opus20/opus20/opus20_fakeserver.py [moved from opus20/scripts/opus20_fakeserver with 100% similarity]
opus20/opus20/opus20_web.py [moved from opus20/scripts/opus20_web with 100% similarity]
opus20/setup.py

similarity index 95%
rename from opus20/scripts/opus20_cli
rename to opus20/opus20/opus20_cli.py
index 2b36ab87f419609e618cf09b7f9f9d8002350e4b..15c504a00df4f45ee97986af313756e04b36c93a 100755 (executable)
@@ -19,7 +19,7 @@ def extended_int(string):
 
 def main():
 
-    parser = argparse.ArgumentParser(description="CLI for the Lufft OPUS20")
+    parser = argparse.ArgumentParser(description="CLI for the Lufft OPUS20. Note that the subcommands provide their own --help!")
     parser.add_argument('host', help='hostname of the device')
     parser.add_argument('--port', '-p', type=int, help='TCP port of the OPUS20')
     parser.add_argument('--timeout', '-t', type=float, help='Timeout of the TCP connection in seconds')
@@ -30,7 +30,7 @@ def main():
     parser_get.add_argument('channel', type=extended_int, nargs='+', help='The selected channel(s)')
     parser_download = subparsers.add_parser('download', help='download the logs and store them locally')
     parser_download.add_argument('persistance_file', help='file to store the logs in')
-    parser_logging = subparsers.add_parser('logging', help='change or query global logging settings')
+    parser_logging = subparsers.add_parser('logging', help='change or query global logging settings (start, stop, clear)')
     subsubparsers = parser_logging.add_subparsers(help='Action to perform w/ respect to logging', dest='action')
     parser_logging_action_status = subsubparsers.add_parser('status', help='Query the current logging status of the device')
     parser_logging_action_start  = subsubparsers.add_parser('start', help='Start logging altogether on the device')
@@ -56,8 +56,10 @@ def main():
         if args.timeout: kwargs['timeout'] = args.timeout
         o20 = Opus20(args.host, **kwargs)
 
+        logger.info(o20.get_logging_state())
         if args.cmd == 'list':
             for channel in o20.available_channels:
+                logger.info(o20.get_channel_logging_state(channel))
                 print("Channel {:5d} (0x{:04X}): {name:22s}  unit: {unit:6s} offset: {offset}".format(channel, channel, **OPUS20_CHANNEL_SPEC[channel]))
         if args.cmd == 'get':
             if len(args.channel) > 1:
index 6cf42c78e800748a976e9a8204464f9f86dbc28a..e63d2c2d1c6e18b39e51bb2e95c653cc2bf932fe 100644 (file)
@@ -17,12 +17,14 @@ setup(name='opus20',
       url = '',
       license = 'GPL',
       packages = ['opus20', 'opus20.webapp'],
-      scripts = [
-          'scripts/opus20_cli',
-          'scripts/opus20_web',
-          'scripts/opus20_discovery',
-          'scripts/opus20_fakeserver',
-      ],
+      entry_points = {
+        'console_scripts': [
+          'opus20_cli = opus20.opus20_cli:main',
+          'opus20_web = opus20.opus20_web:main',
+          'opus20_discovery = opus20.opus20_discovery:main',
+          'opus20_fakeserver = opus20.opus20_fakeserver:main',
+        ],
+      },
       include_package_data = True,
       zip_safe = True,
       platforms = 'any',