#!python

__author__ = "Markus Pichler"
__credits__ = ["Markus Pichler"]
__maintainer__ = "Markus Pichler"
__email__ = "markus.pichler@tugraz.at"
__version__ = "0.1"
__license__ = "MIT"

"""This script is just a executor for the command line interface of the application. It """

from idf_analysis import IntensityDurationFrequencyAnalyse

import matplotlib.pyplot as plt
plt.style.use('bmh')

IntensityDurationFrequencyAnalyse.command_line_tool()
