Functions | |
| def | clean_access_rights (path) |
| def | cleanup_folders (dist=False) |
| def | create () |
| def | folder_cleanup (folder, names=None, extensions=None) |
| def | unix_line_ending (folder, extensions=None, excluded=None) |
Variables | |
| PATH_HERE = os.path.dirname(os.path.realpath(__file__)) | |
| PATH_TEMP = os.path.join(PATH_HERE, "Temp") | |
| list | UNIXLE_EXCLUDED = [".git", ".dll", ".so", ".pyd", ".dylib"] |
| list | UNIXLE_EXTENSIONS = [".py", ".xml", ".json", ".pml", ".txt", ".htm", ".html", ".css"] |
| def wheel_create.clean_access_rights | ( | path | ) |
Allow write access to a path
Definition at line 78 of file wheel_create.py.
| def wheel_create.cleanup_folders | ( | dist = False | ) |
Prepare the Folders for a platform
Definition at line 102 of file wheel_create.py.
| def wheel_create.create | ( | ) |
Create a Package
Definition at line 118 of file wheel_create.py.
| def wheel_create.folder_cleanup | ( | folder, | |
names = None, |
|||
extensions = None |
|||
| ) |
Remove all sub folders and files by name or extension
Definition at line 49 of file wheel_create.py.
| def wheel_create.unix_line_ending | ( | folder, | |
extensions = None, |
|||
excluded = None |
|||
| ) |
Replace Windows Line Endings with Unix Line Endings
Definition at line 20 of file wheel_create.py.
| wheel_create.PATH_HERE = os.path.dirname(os.path.realpath(__file__)) |
Definition at line 15 of file wheel_create.py.
| wheel_create.PATH_TEMP = os.path.join(PATH_HERE, "Temp") |
Definition at line 16 of file wheel_create.py.
| list wheel_create.UNIXLE_EXCLUDED = [".git", ".dll", ".so", ".pyd", ".dylib"] |
Definition at line 18 of file wheel_create.py.
| list wheel_create.UNIXLE_EXTENSIONS = [".py", ".xml", ".json", ".pml", ".txt", ".htm", ".html", ".css"] |
Definition at line 17 of file wheel_create.py.