发布模块
制作发布压缩包步骤
1) 在项目中创建setup.py文件
输入固定格式代码:
from distutils.core import setup
setup(name="hm_message", # 包名
version="1.0", # 版本
description="itheima's 发送和接收消息模块", # 描述信息
long_description="完整的发送和接收消息模块", # 完整描述信息
author="itheima", # 作者
author_email="itheima@itheima.com", # 作者邮箱
url="www.itheima.com", # 主页
py_modules=["message.send_message",
"message.receive_message"]) # 包的模块列表
2)构建模块
终端输入
$ python3 setup.py build
3) 生成发布压缩包
$ python3 setup.py sdist