generated from astronomer/airflow-provider-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.astro-registry.yaml
26 lines (23 loc) · 1.77 KB
/
.astro-registry.yaml
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
# This file is intended to be a file which specifically calls out modules to be published to the Astronomer
# Registry as well as top-level Provider metadata. The file should not be packaged and solely lives in the
# repo. The modules listed should pertain to latest, released version of the repo.
# Python package name.
package-name: airflow_anomaly_detection_provider
# The name of the provider to be displayed on the Registry.
display-name: Airflow Anomaly Detection Provider
# A description to be displayed on the main Provider page.
description: An airflow provider for anomaly detection.
# URL for where user should find the documentation for the Provider. This could be a link to the README,
# an external docs site, etc.
docs_url: https://github.com/andrewm4894/airflow-provider-anomaly-detection/blob/main/README.md
# The next sections should be organized by module type (e.g. operators, hooks, functions, decorators, etc.).
#
# Within each section, the ``module`` value should be the path.to.the.module.specifically.
# For example, if the import path for a function is `from sample_provider.hooks.sample_hook import SampleHook` then the
# value should be "sample_provider.hooks.sample_hook.SampleHook".
operators:
- module: airflow_anomaly_detection.operators.bigquery.metric_batch_ingest_operator.BigQueryMetricBatchIngestOperator
- module: airflow_anomaly_detection.operators.bigquery.metric_batch_train_operator.BigQueryMetricBatchTrainOperator
- module: airflow_anomaly_detection.operators.bigquery.metric_batch_train_operator.BigQueryMetricBatchScoreOperator
- module: airflow_anomaly_detection.operators.bigquery.metric_batch_alert_operator.BigQueryMetricBatchAlertOperator
- module: airflow_anomaly_detection.operators.metric_batch_alert_operator.MetricBatchEmailNotifyOperator