Add version argument
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 28 May 2015 23:58:00 +0000 (19:58 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 29 May 2015 00:02:02 +0000 (20:02 -0400)
barectf/__init__.py
barectf/cli.py

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c0fb68e3f454b0ea5d0ccebf6fe56b225e3ef755 100644 (file)
@@ -0,0 +1,23 @@
+# The MIT License (MIT)
+#
+# Copyright (c) 2014-2015 Philippe Proulx <philippe.proulx@efficios.com>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+__version__ = '0.2.0'
index 2905c1776faea813dc881a78eee91ea960d183ba..16b7399035490c4b13a6555be55eed69ef47d69a 100644 (file)
@@ -1,6 +1,6 @@
 # The MIT License (MIT)
 #
-# Copyright (c) 2014 Philippe Proulx <philippe.proulx@efficios.com>
+# Copyright (c) 2014-2015 Philippe Proulx <philippe.proulx@efficios.com>
 #
 # Permission is hereby granted, free of charge, to any person obtaining a copy
 # of this software and associated documentation files (the "Software"), to deal
 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 # THE SOFTWARE.
+
 from termcolor import cprint, colored
 import barectf.templates
 import pytsdl.parser
 import pytsdl.tsdl
 import collections
 import argparse
+import barectf
 import sys
 import os
 import re
@@ -56,6 +58,8 @@ def _parse_args():
                     help='generate static inline C functions')
     ap.add_argument('-c', '--manual-clock', action='store_true',
                     help='do not use a clock callback: pass clock value to tracing functions')
+    ap.add_argument('-V', '--version', action='version',
+                    version='%(prog)s v{}'.format(barectf.__version__))
     ap.add_argument('metadata', metavar='METADATA', action='store',
                     help='CTF metadata input file')
 
This page took 0.026052 seconds and 4 git commands to generate.