abantos / bolt

A task automation tool (similart to grunt) for Python
MIT License
15 stars 8 forks source link

Task to Add Search Paths #94

Open CurroRodriguez opened 6 years ago

CurroRodriguez commented 6 years ago

Story

As a user, I would like to add locations to the search path, so I can control where additional libraries are located.

Description

Although not recommended, there might be instances where additional search paths are needed, and Bolt should be able to set those search paths through a task to provide more flexibility. The configuration should look like:

config = {
    'search-paths': {
        paths = [
            path1,
            path2,
        ]
    }
}