# Copyright (C) 2014-2017 New York University # This file is part of ReproZip which is released under the Revised BSD License # See file LICENSE for full license details. """Entry point for the reprozip utility. This contains :func:`~reprozip.main.main`, which is the entry point declared to setuptools. It is also callable directly. It dispatchs to other routines, or handles the testrun command. """ from __future__ import division, print_function, unicode_literals if __name__ == '__main__': # noqa from reprozip.main import main main() import argparse import locale import logging import os from rpaths import Path import sqlite3 import sys import traceback from reprozip import __version__ as reprozip_version from reprozip import _pytracer from reprozip.common import setup_logging, \ setup_usage_report, enable_usage_report, \ submit_usage_report, record_usage
# This file is part of ReproZip which is released under the Revised BSD License # See file LICENSE for full license details. """Entry point for the reprozip utility. This contains :func:`~reprozip.main.main`, which is the entry point declared to setuptools. It is also callable directly. It dispatchs to other routines, or handles the testrun command. """ from __future__ import division, print_function, unicode_literals if __name__ == '__main__': # noqa from reprozip.main import main main() import argparse import locale import logging import os from rpaths import Path import sqlite3 import sys import traceback from reprozip import __version__ as reprozip_version from reprozip import _pytracer from reprozip.common import setup_logging, \ setup_usage_report, enable_usage_report, \ submit_usage_report, record_usage