Metadata-Version: 1.1
Name: box51
Version: 0.0.4
Summary: An image processing library created for manhattan to allow local file storage without running an instance of hangar51.
Home-page: https://github.com/anthonyjb/box51
Author: The Getme development team
Author-email: devs@getme.co.uk
License: MIT
Description: Box51
        =====
        
        An image processing library created for manhattan to allow local file storage
        without running an instance of hangar51.
        
        
        Installation
        ------------
        
        `pip install box51`
        
        
        Manhattan setup
        ---------------
        
        Modify you application config as follows:
        
            from manhattan.assets.backends import box51
            from werkzeug.contrib.cache import SimpleCache
        
            class Config:
        
                # Assets
                ASSET_BACKEND = box51
                ASSET_BACKEND_SETTINGS = {
                    'asset_root': '/path/to/assets',
                    'cache': SimpleCache()
                }
                ASSET_BACKEND_ROOT = 'http://mysite.com/assets'
        
        
        Limitations
        -----------
        
        - Box51 does not support the facial recognition feature provided by Hangar51.
        
Keywords: manhattan hangar51
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
