15 lines
316 B
Python
15 lines
316 B
Python
|
# -*- 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')
|