diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2013-02-12 16:28:28 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2013-02-12 16:28:28 +0100 |
commit | 96e341ebc8a32c794bbc6978e0eed4c7cd12797a (patch) | |
tree | 1e3ba01c0fd120a96c1a13385d6bba52e0199865 | |
parent | eb4cd36fc329793e124f589abaf80587925d7a6b (diff) | |
download | gitlab-96e341ebc8a32c794bbc6978e0eed4c7cd12797a.tar.gz |
fix LGPL header and provide module informations
-rw-r--r-- | gitlab.py | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -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 |