I have a simple question.
I used to create a poetry project with my package at root.
project.toml
mypackage
  +- __init__.py
  +- mypackage.py
  +- test_mypackage.py
I recently moved my tests in another directory, so that the folder now looks like.
project.toml
src
  +- mypackage
      +- __init__.py
      +- mypackage.py
tests
  +- test_mypackage.py
Nothing changed for poetry which still work fine when I make poetry build. How does it search for the package root folder? Does it serach a folder with the package name in project.toml?
Thanks for your help.