source: products/quintagroup.transmogrify.pfm2pfg/trunk/docs/INSTALL.txt @ 1498

Last change on this file since 1498 was 1498, checked in by koval, 14 years ago

replaced all references of quintagroup.transmogrifier.pfm2pfg

File size: 1.4 KB
RevLine 
[1498]1quintagroup.transmogrify.pfm2pfg Installation
[295]2==========================
3
[1498]4To install quintagroup.transmogrify.pfm2pfg into the global Python environment (or a workingenv),
[295]5using a traditional Zope 2 instance, you can do this:
6
7 * When you're reading this you have probably already run
[1498]8   ``easy_install quintagroup.transmogrify.pfm2pfg``. Find out how to install setuptools
[295]9   (and EasyInstall) here:
10   http://peak.telecommunity.com/DevCenter/EasyInstall
11
[1498]12 * Create a file called ``quintagroup.transmogrify.pfm2pfg-configure.zcml`` in the
[295]13   ``/path/to/instance/etc/package-includes`` directory.  The file
14   should only contain this::
15
[1498]16       <include package="quintagroup.transmogrify.pfm2pfg" />
[295]17
18
19Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
20recipe to manage your project, you can do this:
21
[1498]22 * Add ``quintagroup.transmogrify.pfm2pfg`` to the list of eggs to install, e.g.:
[295]23 
24    [buildout]
25    ...
26    eggs =
27        ...
[1498]28        quintagroup.transmogrify.pfm2pfg
[295]29       
30  * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:
31 
32    [instance]
33    recipe = plone.recipe.zope2instance
34    ...
35    zcml =
[1498]36        quintagroup.transmogrify.pfm2pfg
[295]37       
38  * Re-run buildout, e.g. with:
39 
40    $ ./bin/buildout
41       
42You can skip the ZCML slug if you are going to explicitly include the package
43from another package's configure.zcml file.
Note: See TracBrowser for help on using the repository browser.