Skip to content

Commit

Permalink
Correction of the list of authors
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit9126 committed Nov 29, 2023
1 parent 240226f commit 25aaeb6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ authors = [
"Ali Hamdan <[email protected]>",
"Sébastien Vallet <[email protected]>",
"Benoît Vinot <[email protected]>",
"Florent Cadoux <[email protected]>",
"Victor Gouin",
]
maintainers = ["Ali Hamdan <[email protected]>"]
Expand Down Expand Up @@ -143,5 +144,5 @@ directory = "htmlcov"
addopts = "--color=yes -vv -n=0"
testpaths = ["roseau/load_flow/"]
filterwarnings = [
'ignore:.*utcfromtimestamp:DeprecationWarning:dateutil.*', # dateutil is imported by pandas, not us
'ignore:.*utcfromtimestamp:DeprecationWarning:dateutil.*', # dateutil is imported by pandas, not us
]
10 changes: 9 additions & 1 deletion roseau/load_flow/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
__author__ = "Benoît Vinot, Victor Gouin, Florent Cadoux, Sébastien Vallet, Ali Hamdan"
__authors__ = ", ".join(
(
"Ali Hamdan <[email protected]>",
"Sébastien Vallet <[email protected]>",
"Benoît Vinot <[email protected]>",
"Florent Cadoux <[email protected]>",
"Victor Gouin",
)
)
__copyright__ = "Roseau Technologies 2018--2023"
__credits__ = "Roseau Technologies"
__license__ = "Proprietary"
Expand Down
4 changes: 2 additions & 2 deletions roseau/load_flow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import importlib.metadata

from roseau.load_flow.__about__ import (
__author__,
__authors__,
__copyright__,
__credits__,
__email__,
Expand Down Expand Up @@ -46,7 +46,7 @@
__version__ = importlib.metadata.version("roseau-load-flow")

__all__ = [
"__author__",
"__authors__",
"__copyright__",
"__credits__",
"__email__",
Expand Down

0 comments on commit 25aaeb6

Please sign in to comment.