-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First version of codemeta.json file for swh
- Loading branch information
1 parent
52bbe62
commit 462564e
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"@context": "https://doi.org/10.5063/SCHEMA/CODEMETA-2.0", | ||
"@type": "SoftwareSourceCode", | ||
"name": "Argo Messaging Service", | ||
"description": "The ARGO Messaging Service is a Publish/Subscribe Service, which implements the Google PubSub protocol. Instead of focusing on a single Messaging API specification for handling the logic of publishing/subscribing to the broker network the API focuses on creating nodes of Publishers and Subscribers as a Service. It provides an HTTP API that enables Users/Systems to implement message oriented services using the Publish/Subscribe Model over plain HTTP. In the Publish/Subscribe paradigm, Publishers are users/systems that can send messages to named-channels called Topics. Subscribers are users/systems that create Subscriptions to specific topics and receive messages.", | ||
"programmingLanguage": ["Golang", "Python"], | ||
"license": "Apache", | ||
"version": "1.5.0", | ||
"url": "https://github.com/ARGOeu/argo-messaging", | ||
"author": { | ||
"@type": "Organization", | ||
"name": "GRNET", | ||
"url": "https://grnet.gr/" | ||
}, | ||
"keywords": ["messaging", "pub/sub", "golang"], | ||
"repositoryCode": { | ||
"@type": "GitRepository", | ||
"codeRepository": "https://github.com/ARGOeu/argo-messaging.git" | ||
} | ||
} | ||
|