Sridhar Ratnakumar
Sridhar Ratnakumar

Reputation: 85372

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 buildout. 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.

Upvotes: 5

Views: 1452

Answers (2)

Benji York
Benji York

Reputation: 2050

Buildout 2 is in alpha at the time of this writing. It supports Python 3.

Upvotes: 3

Sridhar Ratnakumar
Sridhar Ratnakumar

Reputation: 85372

I wrote my own toolset on top of Fabric that does the core of what zc.buildout does. See https://github.com/srid/fablib

Upvotes: 1

Related Questions