Bump version
This commit is contained in:
11
README
11
README
@@ -2,7 +2,7 @@
|
|||||||
* LESSCPY *
|
* LESSCPY *
|
||||||
*
|
*
|
||||||
python LessCss Compiler.
|
python LessCss Compiler.
|
||||||
v0.9d
|
v0.9e
|
||||||
|
|
||||||
A compiler written in python 3 for the lesscss language.
|
A compiler written in python 3 for the lesscss language.
|
||||||
For those of us not willing/able to have node.js installed in our environment.
|
For those of us not willing/able to have node.js installed in our environment.
|
||||||
@@ -40,8 +40,8 @@ or simply place the package into your python path.
|
|||||||
Compiler script Usage
|
Compiler script Usage
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
usage: lesscpy [-h] [-I INCLUDE] [-v] [-x] [-X] [-t] [-s SPACES] [-o OUT] [-r]
|
usage: lesscpy [-h] [-v] [-I INCLUDE] [-V] [-x] [-X] [-t] [-s SPACES] [-o OUT]
|
||||||
[-f] [-m] [-D] [-S] [-V] [-L] [-N]
|
[-r] [-f] [-m] [-D] [-g] [-S] [-L] [-N]
|
||||||
target
|
target
|
||||||
|
|
||||||
LessCss Compiler
|
LessCss Compiler
|
||||||
@@ -51,9 +51,10 @@ positional arguments:
|
|||||||
|
|
||||||
optional arguments:
|
optional arguments:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
|
-v, --version show program's version number and exit
|
||||||
-I INCLUDE, --include INCLUDE
|
-I INCLUDE, --include INCLUDE
|
||||||
Included less-files (comma separated)
|
Included less-files (comma separated)
|
||||||
-v, --verbose Verbose mode
|
-V, --verbose Verbose mode
|
||||||
|
|
||||||
Formatting options:
|
Formatting options:
|
||||||
-x, --minify Minify output
|
-x, --minify Minify output
|
||||||
@@ -73,8 +74,8 @@ Directory options:
|
|||||||
-D, --dry-run Dry run, do not write files
|
-D, --dry-run Dry run, do not write files
|
||||||
|
|
||||||
Debugging:
|
Debugging:
|
||||||
|
-g, --debug Debugging information
|
||||||
-S, --scopemap Scopemap
|
-S, --scopemap Scopemap
|
||||||
-V, --debug Debug mode
|
|
||||||
-L, --lex-only Run lexer on target
|
-L, --lex-only Run lexer on target
|
||||||
-N, --no-css No css output
|
-N, --no-css No css output
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ from lesscpy.lessc import parser
|
|||||||
from lesscpy.lessc import lexer
|
from lesscpy.lessc import lexer
|
||||||
from lesscpy.lessc import formatter
|
from lesscpy.lessc import formatter
|
||||||
|
|
||||||
VERSION_STR = 'Lesscpy compiler 0.9d'
|
VERSION_STR = 'Lesscpy compiler 0.9e'
|
||||||
|
|
||||||
def ldirectory(inpath, outpath, args, scope):
|
def ldirectory(inpath, outpath, args, scope):
|
||||||
"""Compile all *.less files in directory
|
"""Compile all *.less files in directory
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -5,7 +5,7 @@ from distutils.core import setup
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='lesscpy',
|
name='lesscpy',
|
||||||
version='0.9d',
|
version='0.9e',
|
||||||
description='Lesscss compiler.',
|
description='Lesscss compiler.',
|
||||||
author='Jóhann T Maríusson',
|
author='Jóhann T Maríusson',
|
||||||
author_email='jtm@robot.is',
|
author_email='jtm@robot.is',
|
||||||
|
|||||||
Reference in New Issue
Block a user