datasnakes / renv

Creating virtual environments for R.
MIT License
17 stars 0 forks source link

Make a post_setup() method. #7

Open grabear opened 6 years ago

grabear commented 6 years ago

The post_setup method is a skeleton method for customization of virtual environment creation:

def post_setup(self, context):
        """
        Hook for post-setup modification of the venv. Subclasses may install
        additional packages or scripts here, add activation shell scripts, etc.
        :param context: The information for the environment creation request
                        being processed.
        """
        pass