From e9eab37c83b6c4304bc0edb448c321ff5cab6c2c Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Wed, 21 Oct 2015 05:07:47 +0200 Subject: [PATCH] Added a new gitinspector.py entry script. --- README.txt | 4 ++-- gitinspector.py | 24 ++++++++++++++++++++++++ gitinspector/gitinspector.py | 1 - 3 files changed, 26 insertions(+), 3 deletions(-) create mode 100755 gitinspector.py diff --git a/README.txt b/README.txt index e7d5597..461b26e 100644 --- a/README.txt +++ b/README.txt @@ -7,8 +7,8 @@ certain conditions; see the accompanying LICENSE.txt file for further details. For questions regarding gitinspector you can contact the current maintainer in charge at gitinspector@ejwa.se. -To run gitinspector; please start it via the gitinspector/gitinspector.py -script. Use the -h or --help flags to get help about available options. +To run gitinspector; please start it via the gitinspector.py script. Use +the -h or --help flags to get help about available options. It is also possible to set gitinspector options using the "git config" command. Refer to the project page at https://github.com/ejwa/gitinspector diff --git a/gitinspector.py b/gitinspector.py new file mode 100755 index 0000000..ce3a17e --- /dev/null +++ b/gitinspector.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +# coding: utf-8 +# +# Copyright © 2015 Ejwa Software. All rights reserved. +# +# This file is part of gitinspector. +# +# gitinspector is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# gitinspector is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with gitinspector. If not, see . + +from gitinspector import gitinspector + +if __name__ == "__main__": + gitinspector.main() diff --git a/gitinspector/gitinspector.py b/gitinspector/gitinspector.py index 9a29de7..aa5c7ce 100755 --- a/gitinspector/gitinspector.py +++ b/gitinspector/gitinspector.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # coding: utf-8 # # Copyright © 2012-2015 Ejwa Software. All rights reserved.