# IT4Innovations 2019 easyblock = 'PythonPackage' name = 'scandir' version = '1.10.0' homepage = 'https://pypi.org/project/scandir/' description = """scandir() is a directory iteration function like os.listdir(), except that instead of returning a list of bare filenames, it yields DirEntry objects that include file type and stat information along with the name. Using scandir() increases the speed of os.walk() by 2-20 times (depending on the platform and file system) by avoiding unnecessary calls to os.stat() in most cases.""" toolchain = {'name': 'Py', 'version': '2.7'} source_urls = [PYPI_SOURCE] sources = [SOURCE_TAR_GZ] sanity_check_paths = { 'files': [], 'dirs': ['lib/python2.7/site-packages/'], } moduleclass = 'python'