diff --git a/README b/README index 6016eda..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 ============ @@ -40,7 +43,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 e1a7fd3..5b8e935 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() # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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',