/usr/lib/python2.7/dist-packages/reno/main.py is in python-reno 1.3.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | # Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import argparse
import logging
import sys
from reno import create
from reno import defaults
from reno import lister
from reno import report
def main(argv=sys.argv[1:]):
parser = argparse.ArgumentParser()
parser.add_argument(
'-v', '--verbose',
dest='verbosity',
default=logging.INFO,
help='produce more output',
action='store_const',
const=logging.DEBUG,
)
parser.add_argument(
'-q', '--quiet',
dest='verbosity',
action='store_const',
const=logging.WARN,
help='produce less output',
)
parser.add_argument(
'--rel-notes-dir', '-d',
dest='relnotesdir',
default=defaults.RELEASE_NOTES_SUBDIR,
help='location of release notes YAML files',
)
subparsers = parser.add_subparsers(
title='commands',
)
do_new = subparsers.add_parser(
'new',
help='create a new note',
)
do_new.add_argument(
'slug',
help='descriptive title of note (keep it short)',
)
do_new.set_defaults(func=create.create_cmd)
do_list = subparsers.add_parser(
'list',
help='list notes files based on query arguments',
)
do_list.add_argument(
'reporoot',
help='root of the git repository',
)
do_list.add_argument(
'--version',
default=[],
action='append',
help='the version(s) to include, defaults to all',
)
do_list.add_argument(
'--branch',
default=None,
help='the branch to scan, defaults to the current',
)
do_list.set_defaults(func=lister.list_cmd)
do_report = subparsers.add_parser(
'report',
help='generate release notes report',
)
do_report.add_argument(
'reporoot',
help='root of the git repository',
)
do_report.add_argument(
'--output', '-o',
default=None,
help='output filename, defaults to stdout',
)
do_report.add_argument(
'--branch',
default=None,
help='the branch to scan, defaults to the current',
)
do_report.add_argument(
'--version',
default=[],
action='append',
help='the version(s) to include, defaults to all',
)
do_report.set_defaults(func=report.report_cmd)
args = parser.parse_args()
logging.basicConfig(
level=args.verbosity,
format='%(message)s',
)
return args.func(args)
|