Metadata-Version: 1.1
Name: tissu
Version: 0.1-alpha
Summary: Tissu - Functions to handle settings with Fabric
Home-page: http://github.com/thierrystiegler/tissu
Author: Thierry Stiegler
Author-email: thierry.stiegler@gmail.com
License: License :: OSI Approved :: BSD License
Download-URL: https://github.com/thierrystiegler/tissu/tarball/0.1-alpha
Description: About
        =====
        
        Functions to handle settings with Fabric
        
        
        Usage
        =====
        
        Usage in your python code:
        
        ::
        	>>> from tissu.api import *
        	>>> load_settings(mysettings)
        
        	>>> from tissu.conf import settings
        	>>> my_setting = gettattr(settings, "my_settings")
        
        
        Usage in your fabfile:
        ::
        	>>> from tissu.tasks import *
        
        	$ fab e:mysettings
        
        
        INSTALLATION
        ============
        
        Tissu is on PyPI so you can either use ``easy_install -U tissu``
        or ``pip install tissu`` to install it. Otherwise, you can download
        the source from `GitHub <http://github.com/thierrystiegler/tissu>`_ and
        run ``python setup.py install``.
        
        
        
        LICENCE
        =======
        
        BSD
Keywords: fabric,settings
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
