Metadata-Version: 2.0
Name: mush
Version: 2.2
Summary: Type-based dependency injection for scripts.
Home-page: http://pypi.python.org/pypi/mush
Author: Chris Withers
Author-email: chris@simplistix.co.uk
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides-Extra: build
Requires-Dist: pkginfo; extra == 'build'
Requires-Dist: setuptools-git; extra == 'build'
Requires-Dist: sphinx; extra == 'build'
Requires-Dist: twine; extra == 'build'
Requires-Dist: wheel; extra == 'build'
Provides-Extra: test
Requires-Dist: argparse; extra == 'test'
Requires-Dist: coveralls; extra == 'test'
Requires-Dist: manuel; extra == 'test'
Requires-Dist: mock; extra == 'test'
Requires-Dist: nose; extra == 'test'
Requires-Dist: nose-cov; extra == 'test'
Requires-Dist: nose-fixes; extra == 'test'
Requires-Dist: testfixtures; extra == 'test'

Mush is a light weight dependency injection framework aimed at
enabling the easy testing and re-use of chunks of code that make up
scripts. 

This is done by combining several callables into a re-usable
runner. Those callables may produce or require resource objects which
mush passes between them based on the type of the object. The
callables are called roughly in the order they are added to the
runner, but adjusted for the resources required or procuced by it.



