util/lib/package_project.py

15 lines
316 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: UTF-8 -*-
"""
@Project -> File scrapyproject -> package_project
@IDE PyCharm
@Author rengengchen
@Date 2021/5/12 10:46
@Desc
"""
import shutil
import subprocess
subprocess.call('python setup.py bdist_wheel')
shutil.rmtree(r'build')
shutil.rmtree(r'analysis_package.egg-info')