Remove the requirement of having an __init__.py in every Python directory
Python 3 does not require anymore empty __init__.py
files (see PEP-420) and we do
not support anymore Python 2.7, so we do not need to enforce that every Python
directory has an __init__.py
.
Closes #307 (closed)