Merge branch 'master' of github.com:robotis/Lesscpy

This commit is contained in:
robotis
2012-01-30 12:56:58 +00:00
3 changed files with 7 additions and 3 deletions

5
README
View File

@@ -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

View File

@@ -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()
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@@ -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',