paver

Using paver and nose together with an atypical directory structure

I'm trying to write a task for Paver that will run nosetests on my files. My directory structure looks like this: project/ file1.py file2.py file3.py build/ pavement.py subproject/ file4.py test/ file5.py file6.py Doctests (using the --with_doctest option) should be run on all the *.py files,...

How do I use py2exe with paver?

I'm using paver to build my Python application, and I'd like to create an executable using py2exe. I've got the following in my pavement.py: from paver.setuputils import setup from distutils.core import setup import py2exe import paver paver.setuputils.install_distutils_tasks() ... but when I run paver py2exe I get "Build failed: py...

how to generate a voronoi diagram for a plate with a hole

for the problem of a plate with a hole ..how can we generate voronoi diagram..how to substarct the hole area ..please guide ...

select from a partitioned table

I have a table which is partitioned(range partition) by create_date. How to select data from that table 0f year 2005 and 2006? ...