mottosso / be

minimal directory and environment management system for collaborative creative projects
GNU Lesser General Public License v2.1
47 stars 4 forks source link

support for multiline python scripts #16

Closed mottosso closed 9 years ago

mottosso commented 9 years ago

In be.yaml

python:
- print "Hello from Python!"
- >
    def greeting():
        import getpass
        return "Hello %s" % getpass.getuser().title()
    print greeting()