Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Paver 0.7: Better than distutils, better docs and more

1 view
Skip to first unread message

Kevin Dangoor

unread,
May 8, 2008, 11:04:42 PM5/8/08
to python-ann...@python.org
Paver (http://www.blueskyonmars.com/projects/paver/) is a "task"
oriented build, distribution and deployment scripting tool. It's
similar in idea to Rake, but is geared toward Python projects and
takes advantage of popular Python tools and libraries.

Paver can be seen as providing an easier and more cohesive way to work
with a variety of proven tools.

With Version 0.7, Paver is now a full stand-in for the traditional
distutils- or setuptools-based setup.py. Need to perform some extra
work before an sdist runs? No problem:

@task
def sdist():
...move files around, etc....
call_task("distutils.command.sdist")

You put that in your pavement.py file and now running "paver sdist"
will perform your logic and then run the distutils sdist command.

Paver can even generate a setup.py so "python setup.py sdist" or
"python setup.py install" work just as they always have. And to make
it easier for people who don't yet have Paver, you can include a small
zip file that enables "python setup.py install" to work off of a
pavement.py file even without Paver.

Paver 0.7 has a bunch of new tools to help with project documentation
(taking advantage of Georg Brandl's Sphinx and also including Ned
Batchelder's Cog). Paver now includes much better docs, too.

Links:

Home page: http://www.blueskyonmars.com/projects/paver/
Getting Started: http://www.blueskyonmars.com/projects/paver/getting_started.html
Changelog: http://www.blueskyonmars.com/projects/paver/changelog.html
Cheeseshop: http://pypi.python.org/pypi/Paver/
Mailing list: http://groups.google.com/group/paver


--
Kevin Dangoor
Product Manager
SitePen, Inc.
Web development experts:
development, support, training

ke...@sitepen.com

0 new messages