|
4 | 4 | # Copyright (C) 2013 Gauvain Pocentek <gauvain@pocentek.net>
|
5 | 5 | #
|
6 | 6 | # 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 GNULesserGeneral Public License as published by |
8 | 8 | # the Free Software Foundation, either version 3 of the License, or
|
9 | 9 | # (at your option) any later version.
|
10 | 10 | #
|
11 | 11 | # This program is distributed in the hope that it will be useful,
|
12 | 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 | 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14 |
| -# GNU General Public License for more details. |
| 14 | +# GNULesserGeneral Public License for more details. |
15 | 15 | #
|
16 |
| -# You should have received a copy of the GNU General Public License |
| 16 | +# You should have received a copy of the GNULesserGeneral Public License |
17 | 17 | # along with this program. If not, see <http://www.gnu.org/licenses/>.
|
18 | 18 |
|
19 | 19 | importrequests
|
20 | 20 |
|
| 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 | + |
21 | 28 | classGitlabConnectionError(Exception):
|
22 | 29 | pass
|
23 | 30 |
|
|