Metadata-Version: 1.1
Name: pylibsass
Version: 0.1.3
Summary: Python wrapper for libsass
Home-page: http://github.com/rsenk330/pylibsass
Author: Ryan Senkbeil
Author-email: rsenk330@gmail.com
License: Copyright (c) 2013 Ryan Senkbeil

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Description: Pylibsass 
        =========
        
        .. image:: https://travis-ci.org/rsenk330/pylibsass.png?branch=master
                :target: https://travis-ci.org/rsenk330/pylibsass
        
        .. image:: https://pypip.in/d/pylibsass/badge.png
                :target: https://crate.io/packages/pylibsass
        
        Pylibsass is a Python wrapper around the 
        `libsass <https://github.com/hcatlin/libsass>`_ library. The main goal of this
        library is to provide an easy way to hook SASS compilation into your projects.
        
        It uses the awesome `Watchdog <http://pythonhosted.org/watchdog/>`_ library to
        detect filesystem changes and recompile whenever there are changes detected.
        
        .. code-block:: python
        
            import pylibsass
        
            pylibsass.watch("app/static/scss", "app/static/css")
        
        Installation
        ------------
        
        Installation is easy:
        
        .. code-block:: bash
        
            $ pip install pylibsass
        
        Development
        -----------
        
        Installing from source is easy. It is recommended to do this from within a 
        virtualenv:
        
        .. code-block:: bash
        
            $ python setup.py develop
        
        To run the tests, you do something similar:
        
        .. code-block:: bash
        
            $ python setup.py test
        
        Contributing
        ------------
        
        #. `Fork it! <https://help.github.com/articles/fork-a-repo>`_
        #. Create your feature branch (`git checkout -b my-new-feature`)
        #. Commit your changes (`git commit -am 'Added some feature'`)
        #. Push to the branch (`git push origin my-new-feature`)
        #. Create new Pull Request
        
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
