(self)
| 112 | pass |
| 113 | |
| 114 | def run(self): |
| 115 | self.status('Removing previous wheel files under wheelhouse') |
| 116 | shutil.rmtree('wheelhouse', ignore_errors=True) |
| 117 | for wheel in os.listdir('dist'): |
| 118 | self.status('Repair the dist/{} via auditwheel'.format(wheel)) |
| 119 | os.system('auditwheel repair dist/{}'.format(wheel)) |
| 120 | |
| 121 | # self.status('Uploading the package to PyPI via Twine…') |
| 122 | # os.system('{} -m twine upload dist/*'.format(sys.executable)) |
| 123 | sys.exit() |
| 124 | |
| 125 | |
| 126 | def parse_compile_options(): |