I do have kedro wrapped in poetry. I got it workin...
# questions
r
I do have kedro wrapped in poetry. I got it working in development but now I am creating a .whl with poetry which I want to execute kedro in. I dont really get how to execute my kedro pipeline without referencing any absolut path. I always read about running kedro in project mode? Is ther a package mode, which I dont know about? I would actually lova deploying the package created by poetry and defining the path to the conf folder only. What do I miss? I thougth about
Copy code
# pyproject.tom
[project.scripts]
entrypoint = "my_lovely_project.pipeline_registry:main"
Copy code
# my_lovely_project.pipeline_registry.py

from kedro.framework.cli import run

def main(*args: Any, **kwargs: Any) -> Any:
    """Run Kedro from the installed package instead of project mode."""
    return run(*args, **kwargs)
j
Hi Ralf, Kedro supports this as a packaged project. Kedro doc reference: docs.kedro.org/en/stable/deploy/package_a_project?…#…
r
Thanks for your Input. I saw that way too but I'm bound to "poetry build -f wheel" which doesnt to certain things that kedro package does