diff --git a/bioflow_insight_cli/main.py b/bioflow_insight_cli/main.py
index ff5e493e536222c5b5601fbe52ae4e442f26d953..1e0357e2067f1165c64976305379f8d947d22faa 100644
--- a/bioflow_insight_cli/main.py
+++ b/bioflow_insight_cli/main.py
@@ -1,9 +1,11 @@
 import click
 
+import src as bioflow_insight_src
 from src.workflow import Workflow
 
 
 @click.command()
+@click.version_option(bioflow_insight_src.__version__)
 @click.argument('main_workflow_path')
 #@click.option('--author', 'author', required=False, help='Author name, extracted otherwise')
 @click.option('--name', 'name', required=False, help='Workflow name, extracted otherwise')