From eceefe7114bc5d0fc94ac77ee4e510c94c1a76bf Mon Sep 17 00:00:00 2001 From: Ross Brattain Date: Wed, 21 Jun 2017 14:57:13 -0700 Subject: add Python3 support with six switch to relative imports for package file use absolute imports in main this requires renaming anteater.py to main.py to avoid absolute import name conflict update setup.py to indicate python 3.4 support Change-Id: I0fcaf8a9825557962dc98a6a4eef490051fbbfb0 Signed-off-by: Ross Brattain --- anteater/main.py | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 anteater/main.py (limited to 'anteater/main.py') diff --git a/anteater/main.py b/anteater/main.py new file mode 100644 index 0000000..3a23ceb --- /dev/null +++ b/anteater/main.py @@ -0,0 +1,65 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +############################################################################## +# Copyright (c) 2017 Luke Hinds , Red Hat +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +# from __future__ import division, print_function, absolute_import + +"""Anteater - CI Gate Checks. + +Usage: + anteater (-p |--project) [(-ps |--patchset) ] + anteater (-p |--project) [--path ] + anteater (-h | --help) + anteater --version + +Options: + -h --help Show this screen. + --version Show version. +""" +from __future__ import absolute_import + +import six.moves.configparser +from docopt import docopt +import os +from anteater.src.patch_scan import prepare_patchset +from anteater.src.project_scan import prepare_project +from anteater.utils import anteater_logger as antlog + + +config = six.moves.configparser.RawConfigParser() +config.read('anteater.conf') +reports_dir = config.get('config', 'reports_dir') +logger = antlog.Logger(__name__).getLogger() +__version__ = "0.1" + + +def check_dir(): + """ Creates a directory for scan reports """ + try: + os.makedirs(reports_dir) + logger.info('Creating reports directory: {0}'.format(reports_dir)) + except OSError as e: + if not os.path.isdir(reports_dir): + logger.error(e) + + +def main(): + """ Main function, mostly for passing arguments """ + check_dir() + arguments = docopt(__doc__, version=__version__) + + if arguments['']: + prepare_patchset(arguments[''], arguments['']) + elif arguments['']: + prepare_project(arguments[''], arguments['']) + + +if __name__ == "__main__": + main() -- cgit 1.2.3-korg