python基础学习笔记——Python基础教程(第2版 修订版)第18章)(程序打包)

时间:2022-06-08 18:41:05

#Distutils基础

#安装脚本
from distutils.core import setup

setup(name
=”Hello“,verson='1.0',description='A simple example',py_modules=['hello']
#存储为setup.py 确保在同一目录下爱存在hello.py的模块文件


python setup.py build

#安装模块
python setup.py install

#打包

#建立存档文件
python setup.py sdist

 

#创建Windows安装程序或RPM包

python setup.py bdist --formats=wininst

#编译扩展

#使用py2exe创建可执行文件