def main(): clihelper.setup('newrelic_plugin_agent', 'New Relic Platform Plugin Agent', __version__) try: clihelper.run(NewRelicPluginAgent) except parser.ParserError as error: logging.basicConfig(level=logging.CRITICAL) LOGGER.critical('Parsing of configuration file failed: %s', error)
def main(): clihelper.setup( "PhysalisNotifier", "Physalis Notifier component to send " "email messages to users registered with a summary including filtered " "entries.", "0.0.1", ) clihelper.run(PhysalisNotifier)
def main(): """Invoked by the script installed by setuptools.""" clihelper.setup('tinman', __desc__, __version__) add_required_config_keys() clihelper.run(TinmanController)
def main(): clihelper.setup('apiaryd', apiary.__doc__.strip(), apiary.__version__) clihelper.run(ApiaryController)
def main(): clihelper.setup('github_issue_autoresponder', DESCRIPTION, __version__) clihelper.run(Controller)
def main(): clihelper.setup('newrelic_plugin_agent', 'New Relic Platform Plugin Agent', __version__) clihelper.run(NewRelicPluginAgent)
def main(): """Called when invoking the command line script.""" clihelper.setup('rejected', 'RabbitMQ consumer framework', __version__) clihelper.run(Controller, _cli_options)