-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add Amir Mohammadi as contributor in multiple files since git …
…history is lost Since this package was renamed from bob.extension to clapper, Amir's contributions to these files were lost. Amir was a major contributer to bob.extension: https://gitlab.idiap.ch/bob/bob.extension/-/graphs/master?ref_type=heads This commit lists Amir as a contributer on multiple files to remedy this issue.
- Loading branch information
Showing
11 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.. SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
.. SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
.. | ||
.. SPDX-License-Identifier: BSD-3-Clause | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.. SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
.. SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
.. | ||
.. SPDX-License-Identifier: BSD-3-Clause | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.. SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
.. SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
.. | ||
.. SPDX-License-Identifier: BSD-3-Clause | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
|
@@ -13,7 +14,7 @@ requires-python = ">=3.10" | |
description = "Configuration Support for Python Packages and CLIs" | ||
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
authors = [{ name = "Andre Anjos", email = "[email protected]" }] | ||
authors = [{ name = "Andre Anjos", email = "[email protected]" }, { name = "Amir Mohammadi", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
"""Helpers to build command-line interfaces (CLI) via :py:mod:`click`.""" | ||
|
||
import functools | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
"""Functionality to implement python-based config file parsing and loading.""" | ||
|
||
import importlib.util | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
""":py:class:`logging.Logger` setup and stream separation.""" | ||
|
||
import logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
"""Implements a global configuration system setup and readout.""" | ||
|
||
import collections.abc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# SPDX-FileCopyrightText: Copyright © 2022 Idiap Research Institute <[email protected]> | ||
# SPDX-FileContributor: Amir Mohammadi <[email protected]> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
|