我想运行python setup.py install
(安装脚本使用setuptools),我只想将.pyc文件包含在生成的egg或目录中。所有.py文件不得出现。我怎么能这样做?
答案 0 :(得分:20)
不是install
,但可能会运行以下命令
python setup.py bdist_egg --exclude-source-files
并使用easy_install
安装生成的蛋 easy_install dist/eggname.egg
请注意,according to the manual install
只不过是easy_install使用的快捷方式。