From 9bfe793e3f31e92214004c8e603996aca8284078 Mon Sep 17 00:00:00 2001 From: jtm Date: Sat, 28 Jan 2012 17:21:30 +0000 Subject: [PATCH 1/4] Help text --- README | 2 +- lesscpy/scripts/compiler.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 6016eda..c8dba01 100644 --- a/README +++ b/README @@ -40,7 +40,7 @@ usage: lesscpy [-h] [-I INCLUDE] [-x] [-X] [-m] [-D] [-v] [-o OUT] [-S] [-V] target positional arguments: - target + target less file or directory optional arguments: -h, --help show this help message and exit diff --git a/lesscpy/scripts/compiler.py b/lesscpy/scripts/compiler.py index 4fcf727..c720bb9 100644 --- a/lesscpy/scripts/compiler.py +++ b/lesscpy/scripts/compiler.py @@ -42,7 +42,7 @@ def run(): default=False, help="Run lexer on target") group.add_argument('-N', '--no-css', action="store_true", default=False, help="No css output") - aparse.add_argument('target') + aparse.add_argument('target', help="less file or directory") args = aparse.parse_args() # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From 0cf54e38976c459438ee39288337cf6abd5b9199 Mon Sep 17 00:00:00 2001 From: jtm Date: Sat, 28 Jan 2012 17:22:22 +0000 Subject: [PATCH 2/4] markup --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index c8dba01..7854519 100644 --- a/README +++ b/README @@ -40,7 +40,7 @@ usage: lesscpy [-h] [-I INCLUDE] [-x] [-X] [-m] [-D] [-v] [-o OUT] [-S] [-V] target positional arguments: - target less file or directory + target less file or directory optional arguments: -h, --help show this help message and exit From 2a1f6eb39b38b58a58813cdfc6490bf8e0507a8b Mon Sep 17 00:00:00 2001 From: jtm Date: Sat, 28 Jan 2012 17:56:38 +0000 Subject: [PATCH 3/4] update --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fe2fc19..c32fe25 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,10 @@ from distutils.core import setup setup( name='lesscpy', version='0.6', - description='LESSCSS compiler.', + description='Lesscss compiler.', author='Jóhann T Maríusson', author_email='jtm@robot.is', + keywords = ["lesscss"], url='https://github.com/robotis/lesscpy', packages=['lesscpy', 'lesscpy/lessc', From c90a0c5909a853574856a33fa3674fc0d5304fc7 Mon Sep 17 00:00:00 2001 From: jtm Date: Sun, 29 Jan 2012 08:45:27 +0000 Subject: [PATCH 4/4] Added url --- README | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README b/README index 7854519..4e06964 100644 --- a/README +++ b/README @@ -16,6 +16,9 @@ For more information on lesscss: * http://lesscss.org/ * https://github.com/cloudhead/less.js +Development files + * https://github.com/robotis/Lesscpy + Requirements ============