Skip to content

Commit 96e341e

Browse files
author
Gauvain Pocentek
committed
fix LGPL header and provide module informations
1 parent eb4cd36 commit 96e341e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

gitlab.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,27 @@
44
# Copyright (C) 2013 Gauvain Pocentek <gauvain@pocentek.net>
55
#
66
# This program is free software: you can redistribute it and/or modify
7-
# it under the terms of the GNU General Public License as published by
7+
# it under the terms of the GNU Lesser General Public License as published by
88
# the Free Software Foundation, either version 3 of the License, or
99
# (at your option) any later version.
1010
#
1111
# This program is distributed in the hope that it will be useful,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
14+
# GNU Lesser General Public License for more details.
1515
#
16-
# You should have received a copy of the GNU General Public License
16+
# You should have received a copy of the GNU Lesser General Public License
1717
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1818

1919
import requests
2020

21+
__title__ = 'python-gitlab'
22+
__version__ = '0.1'
23+
__author__ = 'Gauvain Pocentek'
24+
__email__ = 'gauvain@pocentek.net'
25+
__license__ = 'LGPL3'
26+
__copyright__ = 'Copyright 2013 Gauvain Pocentek'
27+
2128
class GitlabConnectionError(Exception):
2229
pass
2330

0 commit comments

Comments
 (0)