source: products/quintagroup.quills.extras/trunk/docs/INSTALL.txt

Last change on this file was 538, checked in by mylan, 18 years ago

Create 0.7.1 version tag.

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