Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit366665e

Browse files
nejchJohnVillalovos
authored andcommitted
chore: consolidate license and authors
1 parent50822f8 commit366665e

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
importcopy
192
importimportlib
203
importjson

‎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
importargparse
212
importfunctools
223
importos

‎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
importos

‎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
importconfigparser
192
importos
203
importshlex

‎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
fromenumimportEnum,IntEnum
192

203
fromgitlab._versionimport__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
importfunctools
192
fromtypingimportAny,Callable,cast,Optional,Type,TYPE_CHECKING,TypeVar,Union
203

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp