mkcode is a system for performing make-style development tasks. It provides execution of dependencies, a console script for calling tasks, and automatic discovery of the distutils commands found in setup.py. It does not provide tools for compiled languages or complex nested builds (look to SCons or zc.buildout for those).
Tasks are defined as plain python functions, decorated with a special @task decorator. The name of the function becomes the name of the task, and that task may be called from the command-line via the mk script.
A file in the project’s root directory named mkfile.py contains all of the task definitions. The mk script, when invoked, imports the tasks.
Here is an example mkfile.py:
from mkcode import *
@task
def clean():
""" Clean out all .pyc files in sub-directories """
# This is *great* for getting rid of those stale .pyc files
# that cause mysterious test failures.
for pyc in path().relpath().walkfiles('*pyc'):
print 'Removing:', pyc
pyc.remove()
setup = namespace('setup') # the distutils commands from 'setup.py'
# re-define the 'test' target
task('test', [clean, setup.test])
Here is how you run our new test target:
$ mk test
We can still run the original setuptools test target using the setup namepace:
$ mk setup.test
Please see mkfile.py in the distribution’s base directory for more task examples.
Namespaces
Tasks may belong to namespaces. Namespace tasks are called by joining the namespace and task name with a dot, as if you were referencing a Python object attribute:
# call the 'bar' task in the 'foo' namespace $ mk foo.bar
Please see Jeff Shell’s post for examples of how namespaces are defined and populated.
Setuptools Integration
All of the commands exported by setuptools are available in the setup namespace. However, setuptools’ commands may also be called from the root namespace - invoking them does not require the command to be prefixed with setup. Therefore the following three commands are equivalent:
$ mk develop $ mk setup.develop $ python setup.py develop
Other Notes
Extra command-line parameters are passed through to their targets. The following two commands are equivalent:
$ mk rotate --help $ python setup.py rotate --help
The mk script takes a number of command-line switches, notably -T, which lists all of the registered tasks, -n, which runs a task and its dependencies without executing them, and -f, which allows you to specify an alternative mkfile.
Known Issues
The program fails on vanilla setup.py files that define their own commands. The Python Imaging Library, PIL, is one example of this.
The mk develop command can choke upon first invocation when there is a new package version. In the meantime one can fall back to the setuptools method.
Acknowledgments
This program was heavily inspired by Jeff Shell’s in-house build system. The example targets Jeff provided should work in this system with little modification.
Path support is greatly enhanced by Jason Orendorff’s excellent path module. I highly recommend it for all of your Python work.
Release files for mkcode 0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distributions (sdists)
| File | Size | Uploaded | |
|---|---|---|---|
| mkcode-0.2.zip | 27.1 kB | Details | |
| mkcode-0.2.tar.gz | 20.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| mkcode-0.2-py2.4.egg | Legacy Egg format | - | - | Details |
Total release size:90.5 kB
Release files / mkcode-0.2.zip
| Download URL | mkcode-0.2.zip |
|---|---|
| Size | 27.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
18cd1ac5bdeee0a8c668bddeacdb2000c273e0fc2af0c67bc5f14be1d7b4c9b5
|
|
BLAKE2b-256 checksum How to use checksums |
68392771faf27de89ffc3edffef727795d355bfaabbe59afadf3f02e50cf25c2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / mkcode-0.2.tar.gz
| Download URL | mkcode-0.2.tar.gz |
|---|---|
| Size | 20.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f5ec9b50557468606d92fcf7af69ec476630c102211fe6186216f46ce41adb96
|
|
BLAKE2b-256 checksum How to use checksums |
1ee3089bd88cecabca1140ac321393131ab7f904747e003dca671575003db48a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / mkcode-0.2-py2.4.egg
| Download URL | mkcode-0.2-py2.4.egg |
|---|---|
| Size | 42.9 kB |
| Tags | Egg |
|
SHA-256 checksum How to use checksums |
0c152fe55fc7a3c8108ca75b1c1b0b90e821ffee9c2160759cbc18fd4b8361cf
|
|
BLAKE2b-256 checksum How to use checksums |
6ce31de3bdd20b75e41c79e21250083b30b1920d3a72c79a1477cc7edb3c5d82
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |