Metadata-Version: 1.1
Name: Aglyph
Version: 2.1.0
Summary: Aglyph is a Dependency Injection framework for Python 2.7+, supporting type 2 (setter) and type 3 (constructor) injection.
Home-page: http://www.ninthtest.net/aglyph-python-dependency-injection/
Author: Matthew Zipay
Author-email: mattz@ninthtest.net
License: MIT License
Download-URL: http://sourceforge.net/projects/aglyph/files/aglyph/
Description: Aglyph is a Dependency Injection framework for Python 2.7+, supporting
        type 2 (setter) and type 3 (constructor) injection.
        
        Aglyph runs on CPython (http://www.python.org/) 2.7 and 3.1 - 3.4, and on
        recent versions of the PyPy (http://pypy.org/>),
        Jython (http://www.jython.org/), IronPython (http://ironpython.net/),
        and Stackless Python (http://www.stackless.com/) variants.
        
        Aglyph can assemble "prototype" components (a new instance is created
        every time), "singleton" components (the same instance is returned every
        time), "borg" components (a new instance is created every time, but all
        instances of the same class share the same internal state), and "weakref"
        components (the same instance is returned as long as there is at least one
        "live" reference to the instance in the running application).
        
        Aglyph can be configured using a declarative XML syntax, or
        programmatically in pure Python.
        
Keywords: dependency injection,inversion of control,DI,IoC,service locator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
