config.py revision 670001e45ae9215fa2bf3fec581e0507f2e08271
1# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4import os
5
6import ConfigParser
7
8CONFIG_FILE = os.path.join(os.path.dirname(__file__), 'rpm_config.ini')
9rpm_config = ConfigParser.SafeConfigParser()
10rpm_config.read(CONFIG_FILE)