Alternative to zc.buildout that runs on Python3
My project uses buildout to do primarily two things: automatically fetch dependencies and create scripts; and setup cron jobs (on deployment machines) using the usercrontab buildout recipe.
But buildout is not yet available for Python 3.
So I would like to consider alternatives for bui开发者_Go百科ldout. I know that both virtualenv and pip work on Python 3 - but what is the preferred tool to automate the build toolchain (of creating virtualenv, and automatically installing/upgrading deps)? There is fabric, paver, and so on. What is your preferred tool of choice in this case? It must work seamlessly on both Windows and *nix.
Buildout 2 is in alpha at the time of this writing. It supports Python 3.
I wrote my own toolset on top of Fabric that does the core of what zc.buildout does. See https://github.com/srid/fablib
精彩评论