A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
428 B

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. if __name__ == "__main__":
  4. import sys
  5. import warnings
  6. from hyde.engine import Engine
  7. warnings.filterwarnings('always', category=DeprecationWarning)
  8. message = ("Running hyde using '{0}' will be deprecated in 1.0. "
  9. "Use 'hyde' command instead".format(sys.argv[0]))
  10. warnings.warn(DeprecationWarning(message), stacklevel=1)
  11. Engine().run()