Skip to content

Commit 366665e

Browse files
nejchJohnVillalovos
authored andcommitted
chore: consolidate license and authors
1 parent 50822f8 commit 366665e

22 files changed

+9
-318
lines changed

AUTHORS

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Original creator, no longer active
55
==================================
66
Gauvain Pocentek <gauvainpocentek@gmail.com>
77

8-
Current
9-
=======
8+
Current Maintainers
9+
===================
1010
John L. Villalovos <john@sodarock.com>
1111
Max Wittig <max.wittig@siemens.com>
1212
Nejc Habjan <nejc.habjan@siemens.com>
@@ -15,4 +15,8 @@ Roger Meier <r.meier@siemens.com>
1515
Contributors
1616
------------
1717

18+
Significant contributor, 2014
19+
=============================
20+
Mika Mäenpää <mika.j.maenpaa@tut.fi>
21+
1822
See ``git log`` for a full list of contributors.

docs/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,7 @@ def setup(sphinx):
8383

8484
# General information about the project.
8585
project = "python-gitlab"
86-
copyright = (
87-
f"2013-2018, Gauvain Pocentek, Mika Mäenpää.\n2018-{year}, python-gitlab team"
88-
)
86+
copyright = gitlab.__copyright__
8987

9088
# The version info for the project you're documenting, acts as replacement for
9189
# |version| and |release|, also used in various other places throughout the

gitlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
3+
# Copyright (C) 2013-2019 Gauvain Pocentek, 2019-2022 python-gitlab team
44
#
55
# This program is free software: you can redistribute it and/or modify
66
# it under the terms of the GNU Lesser General Public License as published by

gitlab/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "Gauvain Pocentek, python-gitlab team"
2-
__copyright__ = "Copyright 2013-2019 Gauvain Pocentek, 2019-2021 python-gitlab team"
2+
__copyright__ = "Copyright 2013-2019 Gauvain Pocentek, 2019-2022 python-gitlab team"
33
__email__ = "gauvainpocentek@gmail.com"
44
__license__ = "LGPL3"
55
__title__ = "python-gitlab"

gitlab/base.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
import copy
192
import importlib
203
import json

gitlab/cli.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
#
4-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
5-
#
6-
# This program is free software: you can redistribute it and/or modify
7-
# it under the terms of the GNU Lesser General Public License as published by
8-
# the Free Software Foundation, either version 3 of the License, or
9-
# (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU Lesser General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU Lesser General Public License
17-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18-
19-
201
import argparse
212
import functools
223
import os

gitlab/client.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
171
"""Wrapper for the GitLab API."""
182

193
import os

gitlab/config.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
import configparser
192
import os
203
import shlex

gitlab/const.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2016-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
from enum import Enum, IntEnum
192

203
from gitlab._version import __title__, __version__

gitlab/exceptions.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
import functools
192
from typing import Any, Callable, cast, Optional, Type, TYPE_CHECKING, TypeVar, Union
203

gitlab/mixins.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
from types import ModuleType
192
from typing import (
203
Any,

gitlab/types.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2018 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
import dataclasses
192
from typing import Any, Dict, List, Optional, Tuple, TYPE_CHECKING
203

gitlab/utils.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2016-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
import pathlib
192
import traceback
203
import urllib.parse

gitlab/v4/cli.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
#
4-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
5-
#
6-
# This program is free software: you can redistribute it and/or modify
7-
# it under the terms of the GNU Lesser General Public License as published by
8-
# the Free Software Foundation, either version 3 of the License, or
9-
# (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU Lesser General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU Lesser General Public License
17-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18-
191
import argparse
202
import operator
213
import sys

gitlab/v4/objects/__init__.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2013-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
from .access_requests import *
192
from .appearance import *
203
from .applications import *

tests/unit/mixins/test_object_mixins_attributes.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2014 Mika Mäenpää <mika.j.maenpaa@tut.fi>,
4-
# Tampere University of Technology
5-
#
6-
# This program is free software: you can redistribute it and/or modify
7-
# it under the terms of the GNU Lesser General Public License as published by
8-
# the Free Software Foundation, either version 3 of the License, or
9-
# (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU Lesser General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU Lesser General Public License
17-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18-
191
from gitlab.mixins import (
202
AccessRequestMixin,
213
SetMixin,

tests/unit/test_base.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
import pickle
192

203
import pytest

tests/unit/test_cli.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
#
4-
# Copyright (C) 2016-2017 Gauvain Pocentek <gauvain@pocentek.net>
5-
#
6-
# This program is free software: you can redistribute it and/or modify
7-
# it under the terms of the GNU Lesser General Public License as published by
8-
# the Free Software Foundation, either version 3 of the License, or
9-
# (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU Lesser General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU Lesser General Public License
17-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18-
191
import argparse
202
import io
213
import os

tests/unit/test_config.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2016-2017 Gauvain Pocentek <gauvain@pocentek.net>
4-
#
5-
# This program is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU Lesser General Public License as published by
7-
# the Free Software Foundation, either version 3 of the License, or
8-
# (at your option) any later version.
9-
#
10-
# This program is distributed in the hope that it will be useful,
11-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
# GNU Lesser General Public License for more details.
14-
#
15-
# You should have received a copy of the GNU Lesser General Public License
16-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-
181
import io
192
import sys
203
from pathlib import Path

tests/unit/test_gitlab.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
3-
# Copyright (C) 2014 Mika Mäenpää <mika.j.maenpaa@tut.fi>,
4-
# Tampere University of Technology
5-
#
6-
# This program is free software: you can redistribute it and/or modify
7-
# it under the terms of the GNU Lesser General Public License as published by
8-
# the Free Software Foundation, either version 3 of the License, or`
9-
# (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU Lesser General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU Lesser General Public License
17-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18-
191
import copy
202
import logging
213
import pickle

0 commit comments

Comments
 (0)