summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-03-04 23:51:50 +0000
committerChris McDonough <chrism@agendaless.com>2009-03-04 23:51:50 +0000
commit1add63836199fcc4b076d4be1d9b37f87531c79c (patch)
treec5cf7ab0ce4165d2f0df8bfa9f8014b3d11cd4f3 /setup.py
parente02ba1e57d65415878895c99d5b044578ed5e850 (diff)
downloadpyramid-1add63836199fcc4b076d4be1d9b37f87531c79c.tar.gz
pyramid-1add63836199fcc4b076d4be1d9b37f87531c79c.tar.bz2
pyramid-1add63836199fcc4b076d4be1d9b37f87531c79c.zip
- Add explicit dependencies on ``zope.deferredimport`` and
``zope.deprecation`` for forward compatibility reasons (``zope.component`` will stop relying on ``zope.deferredimport`` soon and although we use it directly, it's only a transitive dependency, and ''zope.deprecation`` is used even though it's only a transitive dependency as well).
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 82d780bf7..e0825310f 100644
--- a/setup.py
+++ b/setup.py
@@ -40,6 +40,8 @@ install_requires=[
'zope.component',
'zope.hookable',
'zope.testing',
+ 'zope.deferredimport',
+ 'zope.deprecation',
'repoze.zcml',
'martian',
]