oneself
oneself

Reputation: 40241

Python Build Script

What are some best practices for creating a build script for a Python project? Specifically, not for building a Python library, but a Python application (e.g. standalone server app or web app). What are some frameworks out there that support:

I usually use setuputils/easy_install for doing this -- which has it's limitations. However, I read an article saying one should use distutils/pip. Which if these is more robust? Are there any other choices?

Thank you

Upvotes: 1

Views: 4123

Answers (1)

If you're looking for a good building framework, Scons which is python based is a good make substitute.

Upvotes: 1

Related Questions