Skip to content

Commit

Permalink
Modified license information to include mpitid
Browse files Browse the repository at this point in the history
  • Loading branch information
Jairam Chandar committed Apr 8, 2013
1 parent 2c81f20 commit ddd0ede
Show file tree
Hide file tree
Showing 7 changed files with 85 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/gitjira
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#################################################################################
#
# Copyright 2013 Jairam Chandar
# Copyright 2013 Jairam Chandar & Michael Pitidis
#
# This file is part of GitJira.
#
Expand Down
2 changes: 1 addition & 1 deletion gitjira/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#################################################################################
#
# Copyright 2013 Jairam Chandar
# Copyright 2013 Jairam Chandar & Michael Pitidis
#
# This file is part of GitJira.
#
Expand Down
21 changes: 20 additions & 1 deletion gitjira/conf.py
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
#
#################################################################################
"""
Configuration.
"""
Expand Down
21 changes: 20 additions & 1 deletion gitjira/error.py
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
#
#################################################################################

class GitJiraError(Exception):
pass
Expand Down
21 changes: 20 additions & 1 deletion gitjira/git.py
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
#
#################################################################################
"""
Handle git actions.
"""
Expand Down
21 changes: 20 additions & 1 deletion gitjira/jira.py
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
#
#################################################################################
"""
Handle requests to Jira.
"""
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
)
)

0 comments on commit ddd0ede

Please sign in to comment.