root/galaxy-central/eggs/PasteDeploy-1.3.3-py2.6.egg/paste/__init__.py @ 3

リビジョン 3, 0.5 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
2# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
3try:
4    import pkg_resources
5    pkg_resources.declare_namespace(__name__)
6except ImportError:
7    # don't prevent use of paste if pkg_resources isn't installed
8    from pkgutil import extend_path
9    __path__ = extend_path(__path__, __name__)
10
11try:
12    import modulefinder
13except ImportError:
14    pass
15else:
16    for p in __path__:
17        modulefinder.AddPackagePath(__name__, p)
18
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。