Minimalistic Python build tool inspired by Rake
Project description
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
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
cake-0.2.3.tar.gz
(4.4 kB
view details)
File details
Details for the file cake-0.2.3.tar.gz
.
File metadata
- Download URL: cake-0.2.3.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27654e25203fb6f97b910c5515551b20e75f6d744f7f95832756238f30d3a4c8 |
|
MD5 | 1be0067af3901d5516029a39e8574205 |
|
BLAKE2b-256 | 87e8cbf67392736d2a7f7cbe7e71830f76cb325ff5e3c31a3c3651aa3caaab7a |