Can you make `kedro package` consider additional f...
# questions
p
Can you make
kedro package
consider additional folders/files to be packaged? In my case, this is the basic structure:
Copy code
<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?
d
so I think it’s ignoring sharepoint cos you don’t have an
__init__.py
but the conf stuff we do intentionally as per the 12 factor app https://12factor.net/config
p
😴 of course it's the lack of init files. Thanks @datajoely!
🚀 1