util/lib/package_project.py

15 lines
316 B
Python
Raw Normal View History

2024-05-12 12:18:24 +00:00
# -*- 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')