51 @param extensions list of extensions to test for |
51 @param extensions list of extensions to test for |
52 @type list of str |
52 @type list of str |
53 @return list of package data files |
53 @return list of package data files |
54 @rtype list of str |
54 @rtype list of str |
55 """ |
55 """ |
56 print(extensions) |
|
57 filesList = [] |
56 filesList = [] |
58 for dirpath, _dirnames, filenames in os.walk(package): |
57 for dirpath, _dirnames, filenames in os.walk(package): |
59 for fname in filenames: |
58 for fname in filenames: |
60 if ( |
59 if ( |
61 not fname.startswith('.') and |
60 not fname.startswith('.') and |