Metadata-Version: 1.1
Name: staticky
Version: 0.1.2
Summary: Simple static files handling
Home-page: http://bitbucket.org/rschoon/staticky
Author: Robin Schoonover
Author-email: robin@cornhooves.org
License: MIT
Description: 
        staticky
        ========
        
        Overview
        --------
        
        staticky is a library that handles compiling collections of "static" files,
        such as for webapps.
        
        .. WARNING::
            staticky is alpha software, and its API is subject to
            change from release to release!
        
        Quick Example
        -------------
        
        Registration::
        
            staticfiles = StaticFiles(root="path/to/static")
        
            staticfiles.register('staticky.rules.sass:Sass', input='{name}.scss', output='{name}.css')
            staticfiles.register('staticky.rules.sass:Sass', input='{name}.sass', output='{name}.css')
            staticfiles.register('staticky.rules:Default')
        
            staticfiles.register_post('staticky.post.uglify:UglifyJS', name='{name}.js')
            staticfiles.register_post('staticky.post.uglify:UglifyCSS', name='{name}.css')
        
        As a View::
        
            from webob import Request
        
            request = webob.Request.blank("/file.css")
            response = staticfiles(request)
        
        Pre-Compile (for deployment)::
        
            staticfiles.install("/var/www/htdocs")
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
