Metadata-Version: 2.1
Name: pysass
Version: 0.1.0
Summary: Sass CLI Python: A wrapper to libsass-python with watchdog capability.
Home-page: https://github.com/WnP/pysass/
Author: Steeve Chailloux
Author-email: steevechailloux@gmail.com
License: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Compilers
Description-Content-Type: text/markdown
Requires-Dist: libsass
Requires-Dist: watchdog

# pysass

A simple wrapper on
[libsass-python pysassc](https://sass.github.io/libsass-python/pysassc.html)
to add watch capability using watchdog.

## Features

- add `-w` and `--watch` flags to `pysassc` command.
- watch included directories and source directory recursively.
- only watch `*.scss` files.
- throttling.

## Install

```
$ pip install pysass
```

## Usage

Use `pysass` command instead of `pysassc` in order to use `-w` or
`--watch` flag additionaly to those provided by
[libsass-python pysassc](https://sass.github.io/libsass-python/pysassc.html).

eg.

```
$ pysass -t compressed -I node_modules/skeleton-scss/scss/ \
	-m ./project/src/main.scss ./project/dist/style.css --watch
```
