From 96e341ebc8a32c794bbc6978e0eed4c7cd12797a Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Tue, 12 Feb 2013 16:28:28 +0100 Subject: fix LGPL header and provide module informations --- gitlab.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'gitlab.py') 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 # # 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 . 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 -- cgit v1.2.1