ppackage has stopped working

It was working very well a few days ago, but now it gives:

I do include the ‘data’ dir and ‘data/models/cog_attacks/mini’ exists but I don’t know why it’s giving that error!

Then I found out that it only happens when I have a .py file inside it, therefore I am looking for a way to be able to include py files inside data without this error (data is not a module dir).

ppackage gets confused when you explicitly include a directory that contains python files. Instead of doing this, include the Python modules by name. It should find any modules that you reference from an import statement in your main Python code.

David