Skip to content

Commit

Permalink
add live backend version (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmacata authored Jun 1, 2021
1 parent c3144b4 commit e615f98
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/openeo_grass_gis_driver/capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@
from flask_restful import Resource
from flask import make_response, jsonify, request

from openeo_grass_gis_driver import __version__

__license__ = "Apache License, Version 2.0"
__author__ = "Sören Gebbert"
__copyright__ = "Copyright 2018, Sören Gebbert, mundialis"
__maintainer__ = "Soeren Gebbert"
__email__ = "[email protected]"
__author__ = "Sören Gebbert, Carmen Tawalika"
__copyright__ = "Copyright 2018-2021, Sören Gebbert, mundialis"
__maintainer__ = "mundialis"


# https://open-eo.github.io/openeo-api/#operation/capabilities
CAPABILITIES = {
"api_version": "1.0.1",
"backend_version": "0.2.0",
"backend_version": __version__,
"stac_version": "0.9.0",
"id": "grass-gis-driver",
"title": "GRASS GIS Driver",
Expand Down

0 comments on commit e615f98

Please sign in to comment.