在python中创建makefile

时间:2013-10-12 01:49:47

标签: python python-2.7 python-3.x makefile

我有两个python程序。说a.py和b.py.我在a.py中构建一个索引,然后运行导入a.py的b.py.

我想制作一个python makefile来安装两个porgrams,比如我去makefile并运行:

./ install - 它将项目安装在当前目录中 ./a.py - 解释a.py ./b.py - 解释b.py

知道如何制作这个或指针,我可以找到资源吗?

1 个答案:

答案 0 :(得分:1)

要开始使用python distutils,您只需要创建一个setup.py文件。有关setup.py的文档,请参阅the python reference,并参阅a real example here

一旦您创建了适合您的项目结构的setup.py文件,您就可以通过运行python setup.py install来安装项目。有关其他命令,请参阅this