0
4

1 回答 1

1
  1. 使用distributeor setuptools,前者是后者的一个分支,有一些改进和更好的文档。distutils任何一个都比 Python 标准库的一部分高出一大步。

  2. 您需要一个控制台脚本,为其定义一个入口点:

    entry_points = {
        'console_scripts': [
            'foo = my_package.some_module:main_func',
            'bar = other_module:some_func',
        ],
    

    wherefoobarwill 是您可以在命令行上调用的脚本。指定的函数将sys.argv[1:]作为第一个也是唯一的参数调用。

  3. 让安装工具来处理;它在 Windows 上运行良好。:-)

于 2012-11-14T13:21:03.127 回答