We use find_packages which will discover the tests folder since it has an __init__.py. This means that when you install cloudpathlib you also end up with a tests package in your site-packages.
|
packages=find_packages(), |
We should just include cloudpathlib explicitly rather than using find_packages since it is the only one.
We use
find_packageswhich will discover thetestsfolder since it has an__init__.py. This means that when you installcloudpathlibyou also end up with atestspackage in your site-packages.cloudpathlib/setup.py
Line 55 in 8e4dcaf
We should just include
cloudpathlibexplicitly rather than usingfind_packagessince it is the only one.