Added printing requirements

This commit is contained in:
Tom Price
2014-12-07 17:32:24 +00:00
parent cdc5521647
commit 0a7419d7e3
571 changed files with 143368 additions and 6 deletions

8
z3c/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)