This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
LICENSE.txt | ||
| |
README.rst | ||
| |
setup.py | ||
| |
zerokspot/ |
zerokspot.recipe.distutils
This recipe offers a simple way to install dependencies that are only available as distutils-archives:
[buildout]
parts = part
[part]
recipe = zerokspot.recipe.distutils
urls =
http://domain.com/file.tar.gz
This will install the package into ${buildout:parts-directory}/part/ and make its library components available via ${part:extra-path}.
Options
Additionally provided variables
Disclaimer
Function-wise this recipe is inspired by Kevin Teague's collective.recipe.distutils, but solves some aspects a little bit different. For instance, this recipe uses setup.py's --prefix-argument in order to also support the installation of packages that have a script-component. It also distinguishes between ${part:location} and ${part:extra-path} with the first representing the prefix-directory while the latter pointing to the respective "site-packages"-directory.













