This file is indexed.

/usr/share/doc/python-paver/html/_sources/virtualenv.txt is in python-paver 1.2.1-1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.. _virtualenv:

Virtualenv Support (paver.virtual)
==================================

Paver makes it easy to set up virtualenv environments for development and deployment.
Virtualenv gives you a place to install Python packages and keep them separate from
your main system's Python installation.


Using virtualenv with tasks
============================

You may specify which virtual environment should particular task use. Do this
with ``@virtualenv`` decorator::

    from paver.easy import task
    from paver.virtual import virtualenv

    @task
    @virtualenv(dir="virtualenv")
    def t1():
        import some_module_existing_only_in_virtualenv


paver.virtual Tasks
===================

.. automodule:: paver.virtual
    :members: