Files
Kenneth Reitz 21670e1a42 ready to rock
2010-08-02 08:51:57 -04:00

22 lines
318 B
Python

# -*- coding: utf-8 -*-
""" Example Fabfile, for project-related tasks.
"""
from fabric.api import *
def task():
"""Some random project-related task"""
print('Example task executed.')
def scrub():
"""Death to the bytecode!"""
local("rm -fr dist build")
local("find . -name \"*.pyc\" -exec rm '{}' ';'")