Results 2 comments of Chen

the behavior of this package is different with original imgcat. imgcat of iterm version will display image with orignal size. while this package display image with recomputed size. the programming...

原因是在 `setup.py` 里 ```python packages=find_packages(), ``` 这个 `find_packages()` 是通过检查 `__init__.py` 来定位包的,所以没有 `__init__.py` 就不会加入到 packages 里,安装时就会丢失。 有的人使用正常的原因,我猜测是通过类似 `pip install -e .` 的命令安装的。这时候整个文件夹会软链过去,所以不会出问题。 --- 我不提pr的原因是丢失的文件太多的,我检查代码发现有的文件夹里有 py 文件,但是没有使用。并不知道这些文件的存在意图,所以还是维护者确认下比较好。