assets: Cache-friendly asset management via content-hash-naming
===============================================================

`assetslib` is a simple Python library that uses content-hash-naming to do URL
fingerprinting.  For some good background information on URL fingerprinting and
cache optimization, see:

    http://code.google.com/speed/page-speed/docs/caching.html


Installation
============

Under Python 2.6+, the quickest way to try `assets` is to install the package in
~/.local/, which you can do like this:

    python setup.py install --user

If you omit the `--user` flag, `assets` will be installed in the default Python
location (ususually in /usr/), but you can install it elsewhere using the
`--prefix` option, like this:

    python setup.py install --prefix=/usr/local/
