env_setup.py 402 B

12345678910111213141516171819
  1. from lakesuperior import env
  2. __doc__="""
  3. Default configuration.
  4. Import this module to initialize the configuration for a production setup::
  5. >>> import lakesuperior.env_setup
  6. Will load the default configuration.
  7. **Note:** this will be deprecated because it's just as easy to do the same with
  8. ::
  9. >>> import env # which in most cases is imported anyways
  10. >>> env.setup()
  11. """
  12. env.setup()