mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-04 15:50:14 +00:00
13 lines
314 B
Python
13 lines
314 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="custom_transformer",
|
|
version="1.0",
|
|
py_modules=["custom_transform_example"],
|
|
entry_points={
|
|
"datahub.ingestion.transformer.plugins": [
|
|
"custom_transform_example_alias = custom_transform_example:AddCustomOwnership",
|
|
],
|
|
},
|
|
)
|