Using pip install geotiff installs the "tests" folder of this repository right into the top-level of site-packages instead of into a sub-folder. It is often hard to find where such test folders come from and other Python packages on PYPI usually do not distribute tests like this.
For example, when installing numpy, its 'tests' folder is installed inside the numpy package folder.
This design also often leads to issues in IDEs that use autodetection for tests.
Please move the tests folder into the package. Thank you!
Using
pip install geotiffinstalls the "tests" folder of this repository right into the top-level of site-packages instead of into a sub-folder. It is often hard to find where such test folders come from and other Python packages on PYPI usually do not distribute tests like this.For example, when installing numpy, its 'tests' folder is installed inside the numpy package folder.
This design also often leads to issues in IDEs that use autodetection for tests.
Please move the tests folder into the package. Thank you!