Im trying to publish a small distribution in python to pypi.
I'm following the docs https://packaging.python.org/tutorials/packaging-projects/ which specifies that i should have the following directory format directory format.
However, my distribution is divided into class and a main file named app.py My format with the extra classes
My problem is that when i add a class and import it to the app file it doesn't get resolved. app is not able to see it.
Import "logic" could not be resolved
Can anyone help with this?
thank you