Hello!
I'm having issue in importing a local package with a common dagger module into another dagger module in a different package, when I try to run it I get this error:
dagger.mod._exceptions.UserError: Main object not found. You can configure it explicitly by adding an entry point to your pyproject.toml file. For example:
[project.entry-points."dagger.mod"]
main_object = 'main:Tool'
after I add those lines it fails with this error:
ModuleNotFoundError: No module named 'dagger_common'
where the dagger_common module is included in the package I've installed pointing to a local folder.
I reference the local package in the .toml file in this way:
dependencies = [
"dagger-io",
{ path = "//path/to/local/package" }
]
Thanks!