Snake is yet another Make-like tool inspired by Rake.
Project description
Snake is yet another Make-like tool, written on Python and inspired by Rake.
Usage Example
In a directory with snakefile.py containing such code:
from snake.api import * @task def hello(): print("Hello World!") task('default', deps=hello)
one could run:
$ snake hello Hello World!
or (because default task is executed if no other task name was specified):
$ snake Hello World!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Snake-0.0.1.tar.gz
(3.2 kB
view hashes)