Metadata-Version: 1.1
Name: Aglyph
Version: 2.1.1
Summary: Aglyph is a Dependency Injection framework for Python, supporting type 2 (setter) and type 3 (constructor) injection.
Home-page: http://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/
Description: Aglyph runs on CPython (http://www.python.org/) 2.7 and 3.3+, 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: Framework :: CherryPy
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
