def run(self):
"""Overridden method. Runs the installation."""
install.run(self) # Call the base class method.
# Make sure all Python tasks are executable.
for file_path in self.get_outputs():
if 'tasks' in file_path and '.py' in file_path:
status = os.stat(file_path)
os.chmod(file_path, status.st_mode | 73)
setup.py 文件源码
python
阅读 18
收藏 0
点赞 0
评论 0
评论列表
文章目录