clarify some installation in README

This commit is contained in:
MinRK
2014-10-21 19:59:10 -07:00
parent 8c2f09f306
commit cfd884459f
2 changed files with 23 additions and 17 deletions

View File

@@ -128,7 +128,7 @@ class BaseCommand(Command):
class Bower(BaseCommand):
description = "fetch static components with bower"
description = "fetch static client-side components with bower"
user_options = []
@@ -173,11 +173,11 @@ class CSS(BaseCommand):
self.distribution.data_files = get_data_files()
# ensure bower is run as part of install
install.sub_commands.insert(0, ('bower', None))
install.sub_commands.insert(0, ('js', None))
install.sub_commands.insert(1, ('css', None))
setup_args['cmdclass'] = {
'bower': Bower,
'js': Bower,
'css': CSS,
}