Is it possible to point to package dependent files with extensions other than .py in a setup.py file?
Package/
         __init__.py
         file.py
         file.xlsx
After pip installing, I want to be able to access file.xlsx somehow through import Package. Is this possible?
