Invoke setup.py with the provided arguments
(args)
| 43 | |
| 44 | |
| 45 | def runSetupScript(args): |
| 46 | """Invoke setup.py with the provided arguments""" |
| 47 | cmd = ['python3', setupScript] + args |
| 48 | exitCode = subprocess.call(cmd) |
| 49 | return exitCode |
| 50 | |
| 51 | |
| 52 | if __name__ == "__main__": |