Are there any good build frameworks written in Python?

后端 未结 5 640
感动是毒
感动是毒 2021-02-01 07:38

I switched from NAnt to using Python to write build automation scripts. I am curious if whether any build frameworks worth using that are similar to Make, Ant, and NAnt, but, i

相关标签:
5条回答
  • 2021-02-01 08:00

    The Python wiki maintains a page on python build and deployment tools.

    0 讨论(0)
  • 2021-02-01 08:11

    My Rapid Throughts: SCons is quite mature and oriented also to other languages (es C++) Waf is very simlar to ant/maven, so you will prefer it if you are used to ant/maven

    Paver is very pythonic oriented, and seems a good option if you do not know how to start.

    0 讨论(0)
  • 2021-02-01 08:13

    The following look good, but I haven't used them (yet):

    • Paver
    • waf
    • doIt

    Paver looks especially promising.

    0 讨论(0)
  • 2021-02-01 08:15

    Try SCons

    Or are you looking for something just to build python projects?

    0 讨论(0)
  • 2021-02-01 08:21

    There is also Fabric but it's specially geared towards deployment rather than generic building.

    0 讨论(0)
提交回复
热议问题