Let's say I have a project foo with:
[tools.poetry.scripts]
foo-cli = 'foo:main'
and a project bar with:
[tool.poetry.dependencies]
python = "^3.7"
bar = {path = "../foo"}
Is foo-cli
supposed to be available in a virtualenv where bar is installed using poetry install
(seems to not be the case so far) ?
My project was started using an older version of poetry, remove and recreate the virtual envs fixed the issue.