-
Notifications
You must be signed in to change notification settings - Fork 1
/
configuration.py
33 lines (23 loc) · 1000 Bytes
/
configuration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Contains transformer configuration information
"""
# The version number of the transformer
TRANSFORMER_VERSION = '2.0'
# The transformer description
TRANSFORMER_DESCRIPTION = 'Geostreams CSV uploader'
# Short name of the transformer
TRANSFORMER_NAME = 'terra.geostreams'
# The sensor associated with the transformer
TRANSFORMER_SENSOR = 'csv'
# The transformer type (eg: 'rgbmask', 'plotclipper')
TRANSFORMER_TYPE = 'csv'
# The name of the author of the extractor
AUTHOR_NAME = 'Chris Schnaufer'
# The email of the author of the extractor
AUTHOR_EMAIL = 'schnaufer@email.arizona.edu'
# Contributors to this transformer
CONTRIBUTORS = ['Max Burnette']
# Repository URI of where the source code lives
REPOSITORY = 'https://github.com/AgPipeline/transformer-geostream-csvupload.git'
# Hard-coded override of base docker image (used when Dockerfile is generated)
# If a name is entered here it will be used to populate the "FROM" field of the Dockerfile
BASE_DOCKER_IMAGE_OVERRIDE_NAME = ''