summaryrefslogtreecommitdiff
path: root/paste/__init__.py
blob: 69391f2d6f566f17b415d98c2539963ae32489da (plain)
1
2
3
4
5
6
7
8
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
try:
    import pkg_resources
    pkg_resources.declare_namespace('paste')
except ImportError:
    # don't prevent use of paste if pkg_resources isn't installed
    pass