-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfiguration.py
38 lines (27 loc) · 1.07 KB
/
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
34
35
36
37
38
"""Contains transformer configuration information
"""
from agpypeline.configuration import Configuration
class ConfigurationInfo(Configuration):
"""Configuration information"""
# pylint: disable=too-few-public-methods
# The version number of the transformer
transformer_version = '1.0'
# The transformer description
transformer_description = ''
# Short name of the transformer
transformer_name = ''
# The sensor associated with the transformer
transformer_sensor = ''
# The transformer type (eg: 'rgbmask', 'plotclipper')
transformer_type = ''
# The name of the author of the extractor
author_name = ''
# The email of the author of the extractor
author_email = ''
# Contributors to this transformer
contributors = []
# Repository URI of where the source code lives
repository = ''
# 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 = ''