Tagged Questions
The paver tag has no wiki summary.
3
votes
1answer
393 views
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
...
1
vote
3answers
81 views
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 ...
0
votes
1answer
68 views
How to import modules in Paver?
I am using Paver for the first time and I can't import in my pavement.py a module I created in the same directory. The module was working when imported in a standalone script in the same directory. I ...