From 997693c59e8e0239a9dc6b196864a1394f6832e8 Mon Sep 17 00:00:00 2001 From: Antonio Camargo Date: Thu, 19 Dec 2019 15:30:00 -0300 Subject: [PATCH] Bump to 0.6.1 --- setup.py | 2 +- tspex/cli.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 77b42a2..12b21ce 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name='tspex', - version='0.6.0', + version='0.6.1', packages=find_packages(), license='GNU General Public License v3.0', description='A Python package for calculating tissue-specificity metrics for gene expression.', diff --git a/tspex/cli.py b/tspex/cli.py index a0a3882..0224ac4 100644 --- a/tspex/cli.py +++ b/tspex/cli.py @@ -65,6 +65,7 @@ def main(): description='Compute gene tissue-specificity from an expression matrix and save the output.', formatter_class=argparse.ArgumentDefaultsHelpFormatter, ) + parser.add_argument('--version', action='version', version='%(prog)s 0.6.1') parser.add_argument( 'input_file', help='Expression matrix file in the TSV, CSV or Excel formats.' )