No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

__init__.py 232 B

hace 14 años
hace 14 años
hace 14 años
hace 14 años
hace 14 años
123456789101112131415161718
  1. verbose = True
  2. force_rebuild = False
  3. no_minify = False
  4. def run():
  5. """
  6. Run the builder
  7. """
  8. global verbose
  9. import sys, os
  10. from build.project import Project
  11. verbose = True
  12. Project().build()
  13. if __name__=='__main__':
  14. run()