|
Burgerlib Python
|
Package that contains clean helper functions. More...
Functions | |
| clean_xcode (path, recursive=False) | |
| Scan for XCode project folders and perform a clean. | |
| clean_codeblocks (path, recursive=False) | |
| Scan for Codeblocks project files and perform a clean. | |
| clean_setup_py (path, recursive=False) | |
| Scan for setup.py files and perform a clean. | |
Variables | |
| _CODEBLOCKS_MATCH | |
| Match *.cbp. | |
Package that contains clean helper functions.
| burger.cleanutils.clean_codeblocks | ( | path, | |
| recursive = False ) |
Scan for Codeblocks project files and perform a clean.
Scan the current folder and for every codeblocks project file, remove all .depend and .layout files from the folder
| path | Directory to begin scanning |
| recursive | Boolean if recursive clean is desired |
| burger.cleanutils.clean_setup_py | ( | path, | |
| recursive = False ) |
Scan for setup.py files and perform a clean.
Scan the current folder and if the file setup.py was found, remove the folders dist, build, _build, .tox, .pytestcache and *.egg-info
| path | Directory to begin scanning |
| recursive | Boolean if recursive clean is desired |
| burger.cleanutils.clean_xcode | ( | path, | |
| recursive = False ) |
Scan for XCode project folders and perform a clean.
Scan the current folder and for every folder that is an XCode project, remove all user files from the folder
| path | Directory to begin scanning |
| recursive | Boolean if recursive clean is desired |