Pedro Sousa Silva
04/11/2024, 10:36 AMkedro package
consider additional folders/files to be packaged? In my case, this is the basic structure:
<my_package_name>
├── conf
├── pyproject.toml
├── requirements.txt
└── src
├── my_package_name
│ ├── __init__.py
│ ├── __main__.py
│ ├── ...
│ ├── pipelines
│ ├── utils
│ ├── databricks.py
│ ├── sharepoint.py
│ ├── datasets
│ │ └── custom_delta_table.py
The regular behavior will ignore not only conf/
folder, but also the utils/
and datasets/
, therefore preventing me from doing stuff like from my_package_name.utils import sharepoint
Any workarounds?datajoely
04/11/2024, 10:37 AM__init__.py
datajoely
04/11/2024, 10:38 AMdatajoely
04/11/2024, 10:38 AMPedro Sousa Silva
04/11/2024, 10:50 AM