Configure entrypoint for airflow plugin (#4733)

* Configure entrypoint for airflow plugin

* fix formatting
This commit is contained in:
Vitor Avancini 2022-05-06 01:30:12 -03:00 committed by GitHub
parent e6abd86797
commit 2b1fca377d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,13 @@ setup(
package_dir={"": "src"},
zip_safe=False,
dependency_links=[],
include_package_data=True,
package_data={"": ["*.html", "*.j2"]},
entry_points={
"airflow.plugins": [
"openmetadata-airflow-managed-apis = plugins.openmetadata_airflow_apis_plugin:RestApiPlugin"
]
},
project_urls={
"Documentation": "https://docs.open-metadata.org/",
"Source": "https://github.com/open-metadata/OpenMetadata",