pip install cmake will create a package named cmake in the python site-packages directory.
This PR adds __init__.py to lilcom/cmake to make it a package. Since Python searches the current directory first, it will not use the cmake package from the site-packages directory.
Fix https://github.com/danpovey/lilcom/issues/41#issuecomment-1244431242
pip install cmake
will create a package namedcmake
in the python site-packages directory.This PR adds
__init__.py
tolilcom/cmake
to make it a package. Since Python searches the current directory first, it will not use thecmake
package from thesite-packages
directory.