cookbook 'backslasher-python', '= 0.1.4'
backslasher-python (14) Versions 0.1.4 Follow0
Installs/Configures python and python accessories
cookbook 'backslasher-python', '= 0.1.4', :supermarket
knife supermarket install backslasher-python
knife supermarket download backslasher-python
backslasher-python-cookbook
A cookbook for managing python-related resources in a simple way
This is mostly a ripoff of the python cookbook, since it's both deprecated and has its resource names stolen by poise-python cookbook
Resources:
-
backslasher_python_pip_installer
: Makes sure a python envrionment has pip installed -
backslasher_python_pip
: A pip package -
backslasher_python_virtualenv
: A virtual environment
Supported Platforms
Should work on normal Linux boxes. Possibly on Windows.
I'm testing on:
- Ubuntu 14.04
- CentOS 6 (6.7)
- CentOS 7 (7.1)
Attributes
-
['backslasher-python']['install_method']
: How to install python. Defaults topackage
. I'm currently not supoorting any other method.
Recipes
backslasher-python::default
The works - installs Python, pip and virtualenv.
Python is installed according to ['backslasher-python']['install_method']
backslasher-python::package
Installs python using the repo's packages.
Provides both python runtime and Python development headers
backslasher-python::pip
Installs pip on the "regular" Python (the one available as python
)
backslasher-python::virtualenv
Installs the virtualenv pip package on the "regular" Python. Also makes sure pip is installed.
Resources
backslasher_python_pip_installer
Installs pip on a specific python executable
Properties
-
python_path
: Python binary to install pip on.
Defaults topython
, which should find the "system" python
Note: This action might overwrite the "primary"pip binary. There is no easy way to avoid this since there is no way to instruct setuptools
not to create "entry points". I'll happily accept a PR for fixing this.
backslasher_python_pip
Installs/removed/upgrades a pip package
Actions
-
install
: Install the pip package -
upgrade
: Upgrade the pip package if it is uninstalled / has version mismatch. Will upgrade to latest by default. -
remove
: Remove the pip package if installed
Properties
-
python_path
: Python binary to install on.
Not relevant if usingvirtualenv
property.
Defaults topython
, which should find the "system" python. -
package_name
: Pip package to install. Defaults to the resource's name - `
package_url
: Optional. Used to specify a URL to install the package from (e.g.pip install git+git://git.myproject.org/MyProject#egg=MyProject
) -
version
: Optional. Specifies a pip version to install -
virtualenv
: Optional. Specifies a virtualenv path to install/remove the pip package in -
timeout
: Time allotted for pip commands. Defaults to 900 seconds (15 min) - `
user
: User to run the commands under -
group
: Group to run the commands under -
environment
: Hash of environment variables to pass to the pip commands -
options
: An array of arguments to pass to the pip commands
backslasher_virtualenv
Manages a python virtualenv
Actions
-
create
: Creates the virtualenv -
delete
: Deletes the virtualenv
Properties
-
path
: Location inside the filesystem of the virtualenv. Defaults to the resource's name -
interpreter
: Optional. Python binary used for venv. Defaults to the system python -
owner
: Optional. Owning user of the virtualenv -
group
: Optional. Owning group of the virtualenv -
options
: Optional. A string of arguments to pass the virtualenv creator
License and Authors
Author:: YOUR_NAME (<YOUR_EMAIL>)
Dependent cookbooks
compat_resource = 12.5.0 |
yum-epel ~> 0.6 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
0.1.4
- [backslasher] Finally fixed
new_resource
0.1.3
- [backslasher] Disposing of new_resource
0.1.2
- [backslasher] Avoid return inside code block
0.1.1
- [backslasher] Foodcritic issues
0.1.0
- [backslasher] Initial release of backslasher-python
Foodcritic Metric
0.1.4 failed this metric
FC023: Prefer conditional attributes: /tmp/cook/61e0f44ae6808517a7cf17cb/backslasher-python/resources/pip.rb:69
0.1.4 failed this metric