Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2025 02:35 AM
Hi, I hope it would be usefuel. Here are my files:
project structure -> DAB_project_structure.png
each yml file for job definitions -> task_group_1_job.png and task_group_2_job.png
Each .py file has main() method.
setup.py:
description="wheel file based on bundle_test/src",
packages=find_packages(where="./src"),
package_dir={"": "src"},
entry_points={
"packages": [
"task_group_1_task_1=bundle_test.task_group_1.task_group_1_task_1:main",
"task_group_2_task_2=bundle_test.task_group_2.task_group_1_task_2:main",
],
},
install_requires=[
# Dependencies in case the output wheel file is used as a library dependency.
# For defining dependencies, when this package is used in Databricks, see:
# https://docs.databricks.com/dev-tools/bundles/library-dependencies.html
"setuptools"
],