Example #1
0
def main():
    """The entry point for Setuptools."""
    from radon.cli import BAKER, log_error

    try:
        BAKER.run()
    except Exception as e:
        log_error(e)
        raise
Example #2
0
def main():
    '''The entry point for Setuptools.'''
    from radon.cli import BAKER

    BAKER.run()