#!/usr/bin/env python

import os
import click
from aavrugtest.aavrugtest import hello

@click.command()
@click.option('--s', default=os.getcwd(), help='Folders paths')
def helloo(s):
	print hello(s)

helloo()