| Index: appengine/monorail/appengine_config.py
|
| diff --git a/appengine/monorail/appengine_config.py b/appengine/monorail/appengine_config.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e886e941989bd3cf5db28f033fa89e37190fa0a2
|
| --- /dev/null
|
| +++ b/appengine/monorail/appengine_config.py
|
| @@ -0,0 +1,15 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is govered by a BSD-style
|
| +# license that can be found in the LICENSE file or at
|
| +# https://developers.google.com/open-source/licenses/bsd
|
| +
|
| +"""Configuration."""
|
| +
|
| +import os
|
| +import sys
|
| +
|
| +# Enable third-party imports
|
| +sys.path.append(os.path.join(os.path.dirname(__file__), 'third_party'))
|
| +
|
| +import httplib2
|
| +import oauth2client
|
|
|