zerok / zerokspot.recipe.distutils
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (3)
- Wiki (1)
- Graphs
-
Tag:
v0.1.0
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
LICENSE.txt | ||
| |
README.rst | ||
| |
setup.py | ||
| |
zerokspot/ |
README.rst
urls
A space-separated list of packages that should be installed into
${buildout:parts-directory}/<partname>.
location
Points to the prefix of the installed package
extra-path
Points to the site-package-directory within the prefix
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.


