需要安装wheel
python -m pip install wheel
requests是项目名,在项目同一级别目录下创建setup.py文件
setup.py内容如下:
#-*- coding:utf-8 -*-
from setuptools import setup,find_packages
setup(name='requests',
version='2.24.0',
description='source demo',
author='author',
author_email='author@qq.com',
packages=find_packages(),
package_data={'': ['*.*']}
)
在项目同一级别目录下命令行执行:
python setup.py bdist_wheel
生成whl文件在dist目录下