From ddd0edeef72fe77e6632e6047f5fbe6479cdac0f Mon Sep 17 00:00:00 2001 From: Jairam Chandar Date: Mon, 8 Apr 2013 10:33:25 +0100 Subject: [PATCH] Modified license information to include mpitid --- bin/gitjira | 2 +- gitjira/__init__.py | 2 +- gitjira/conf.py | 21 ++++++++++++++++++++- gitjira/error.py | 21 ++++++++++++++++++++- gitjira/git.py | 21 ++++++++++++++++++++- gitjira/jira.py | 21 ++++++++++++++++++++- setup.py | 6 +++--- 7 files changed, 85 insertions(+), 9 deletions(-) diff --git a/bin/gitjira b/bin/gitjira index f2d9af0..935d919 100755 --- a/bin/gitjira +++ b/bin/gitjira @@ -2,7 +2,7 @@ ################################################################################# # -# Copyright 2013 Jairam Chandar +# Copyright 2013 Jairam Chandar & Michael Pitidis # # This file is part of GitJira. # diff --git a/gitjira/__init__.py b/gitjira/__init__.py index 72e027d..c640f83 100644 --- a/gitjira/__init__.py +++ b/gitjira/__init__.py @@ -1,6 +1,6 @@ ################################################################################# # -# Copyright 2013 Jairam Chandar +# Copyright 2013 Jairam Chandar & Michael Pitidis # # This file is part of GitJira. # diff --git a/gitjira/conf.py b/gitjira/conf.py index 1cb7d46..9c79c8c 100644 --- a/gitjira/conf.py +++ b/gitjira/conf.py @@ -1,4 +1,23 @@ - +################################################################################# +# +# Copyright 2013 Jairam Chandar & Michael Pitidis +# +# This file is part of GitJira. +# +# GitJira 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. +# +# GitJira 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 GitJira. If not, see . +# +################################################################################# """ Configuration. """ diff --git a/gitjira/error.py b/gitjira/error.py index e53dab0..282a414 100644 --- a/gitjira/error.py +++ b/gitjira/error.py @@ -1,4 +1,23 @@ - +################################################################################# +# +# Copyright 2013 Jairam Chandar & Michael Pitidis +# +# This file is part of GitJira. +# +# GitJira 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. +# +# GitJira 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 GitJira. If not, see . +# +################################################################################# class GitJiraError(Exception): pass diff --git a/gitjira/git.py b/gitjira/git.py index 026d345..73f11bb 100644 --- a/gitjira/git.py +++ b/gitjira/git.py @@ -1,4 +1,23 @@ - +################################################################################# +# +# Copyright 2013 Jairam Chandar & Michael Pitidis +# +# This file is part of GitJira. +# +# GitJira 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. +# +# GitJira 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 GitJira. If not, see . +# +################################################################################# """ Handle git actions. """ diff --git a/gitjira/jira.py b/gitjira/jira.py index e0ae7ca..de5011e 100644 --- a/gitjira/jira.py +++ b/gitjira/jira.py @@ -1,4 +1,23 @@ - +################################################################################# +# +# Copyright 2013 Jairam Chandar & Michael Pitidis +# +# This file is part of GitJira. +# +# GitJira 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. +# +# GitJira 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 GitJira. If not, see . +# +################################################################################# """ Handle requests to Jira. """ diff --git a/setup.py b/setup.py index 9d8dc62..24bbe03 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,10 @@ setup(name='gitjira', version='0.2', - author='Jairam Chandar', - author_email='jairamc23@gmail.com', + author='Jairam Chandar & Michael Pitidis', + author_email='contact@jairam.me', license='GPLv3', description='Tool to integrate Jira ticket information in git', scripts=['bin/gitjira'], packages=['gitjira'], - ) \ No newline at end of file + )