cake 0.2.3
Minimalistic Python build tool inspired by Rake
It uses a simple python script (Cakefile) located in the project root to define its tasks. Cake can be run and can run tasks from anywhere within the project.
Features
- Task descriptions
- Task arguments
- Colored output
Usage
List all tasks
cake
Execute task
cake [name] [args]
Example
$ cat Cakefile
from cake.lib import task, path
@task("header information")
def test(value='test'):
""" task description """
print('current dir: %s' % path.current)
print('project dir: %s' % path.root)
print('running with value %s' % value)
$ cake (in /home/alex/work/cake/examples) cake test # task description
$ cake test example (in /home/alex/work/cake/examples) ** test: header information current dir: /home/alex/work/cake/examples project dir: /home/alex/work/cake/examples running with value example
Install
pip install cake
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| cake-0.2.3.tar.gz (md5) | Source | 2012-01-24 | 4KB | 194 | |
- Author: Alexandru Cepoi
- Home Page: https://github.com/alexcepoi/cake
- Download URL: https://github.com/alexcepoi/cake/zipball/master
- License: GPLv3
- Platform: linux
- Package Index Owner: alexcepoi
- DOAP record: cake-0.2.3.xml
