标签:mamicode port info 发布 python模块 模块 alt esc inf
1 新建一个文件夹,并将pyhthon模块的包文件夹复制到新建的文件夹内。
2、在新文件夹中创建一个名为setup.py的文件;
from distutils.core import setup
setup(
name='test', #对外我们模块的名字
version='1.0.0', #版本
py_modules =['test_a,test_b'], python模块包内的模块的名字
author='cxm',
author_email='cxm@163.com',
description='我发布了一个测试的包,这个里面什么都没有' #包功能的描述
)
3 在math3文件夹下打开终端cmd命令。
标签:mamicode port info 发布 python模块 模块 alt esc inf
原文地址:https://www.cnblogs.com/python99/p/12357398.html