-
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.
Merge pull request #59 from bento-platform/chore/update
chore: update dependencies (+ small new bento lib usage tweaks)
- Loading branch information
Showing
6 changed files
with
1,099 additions
and
415 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
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__) |
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
Oops, something went wrong.