python 安装包制作
Posted 破晓
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 安装包制作相关的知识,希望对你有一定的参考价值。
1、 __init__.py
2、模块1 模块2
3、setup.py
from distutils.core import setup
setup(name=‘modules_name‘,version=‘1.0‘,description=‘modules_desc‘,author=‘author‘,py_modules=[‘模块1‘,‘模块2‘])
python setup.py build
python setup.py sdist
ok
以上是关于python 安装包制作的主要内容,如果未能解决你的问题,请参考以下文章