Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pycklets / pip_requirements_present.py
Size: Mime:
# -*- coding: utf-8 -*-

from pyckles import AutoPycklet


class PipRequirementsPresent(AutoPycklet):
    """Install dependencies so 'pip' can be used by Ansible.

     This is a helper frecklet, and probably does not need  to be called directly by any user.
     This is a workaround for issue: https://github.com/ansible/ansible/issues/47361 , ideally this would not be necessary in every case.

       Args:

    """

    FRECKLET_ID = "pip-requirements-present"

    def __init__(self,):

        super(PipRequirementsPresent, self).__init__(var_names=[])