summaryrefslogtreecommitdiff
path: root/gitlab.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab.py')
-rw-r--r--gitlab.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/gitlab.py b/gitlab.py
index c1eee7e..8de712c 100644
--- a/gitlab.py
+++ b/gitlab.py
@@ -4,20 +4,27 @@
# Copyright (C) 2013 Gauvain Pocentek <gauvain@pocentek.net>
#
# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
+# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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.
+# GNU Lesser General Public License for more details.
#
-# You should have received a copy of the GNU General Public License
+# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import requests
+__title__ = 'python-gitlab'
+__version__ = '0.1'
+__author__ = 'Gauvain Pocentek'
+__email__ = 'gauvain@pocentek.net'
+__license__ = 'LGPL3'
+__copyright__ = 'Copyright 2013 Gauvain Pocentek'
+
class GitlabConnectionError(Exception):
pass