-
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: update dependencies (+ small new bento lib usage tweaks)
- Loading branch information
1 parent
5fe7867
commit 9bec5c2
Showing
4 changed files
with
1,097 additions
and
411 deletions.
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
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,22 +1,13 @@ | ||
from __future__ import annotations | ||
|
||
from bento_lib.service_info.helpers import build_bento_service_type | ||
from . import __version__ | ||
|
||
|
||
__all__ = [ | ||
"BENTO_SERVICE_KIND", | ||
"SERVICE_ORGANIZATION", | ||
"SERVICE_ARTIFACT", | ||
"SERVICE_TYPE", | ||
"SERVICE_NAME", | ||
] | ||
|
||
BENTO_SERVICE_KIND = "aggregation" | ||
SERVICE_ORGANIZATION = "ca.c3g.bento" | ||
SERVICE_ARTIFACT = BENTO_SERVICE_KIND | ||
SERVICE_TYPE = { | ||
"group": "ca.c3g.bento", | ||
"artifact": SERVICE_ARTIFACT, | ||
"version": __version__, | ||
} | ||
SERVICE_NAME = "Bento Aggregation Service" | ||
SERVICE_TYPE = build_bento_service_type(BENTO_SERVICE_KIND, __version__) |
Oops, something went wrong.