summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-12-26 22:22:09 +0000
committerChris McDonough <chrism@agendaless.com>2008-12-26 22:22:09 +0000
commit8b11d8050aaaf78b454713ab90cee74ce54dca3a (patch)
tree38ff36733ea4623fd3983de0d8af10bfd2644cc2
parent041c0c7e84e60399077408a0a3bdbc71c0e040e9 (diff)
downloadpyramid-8b11d8050aaaf78b454713ab90cee74ce54dca3a.tar.gz
pyramid-8b11d8050aaaf78b454713ab90cee74ce54dca3a.tar.bz2
pyramid-8b11d8050aaaf78b454713ab90cee74ce54dca3a.zip
Depend on Zope packages expliticly instead of having them come from chameleon automagically.
-rw-r--r--setup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 9c5237780..dff34bb8e 100644
--- a/setup.py
+++ b/setup.py
@@ -31,14 +31,16 @@ except IOError:
install_requires=[
'chameleon.core [lxml] >= 1.0b13',
'chameleon.genshi >= 1.0b2',
- 'chameleon.zpt >= 1.0b7',
+ 'chameleon.zpt >= 1.0b8',
'PasteScript',
'Routes',
'setuptools',
'WebOb',
- 'repoze.zcml',
+ 'zope.interface',
+ 'zope.component',
'zope.hookable',
'zope.testing',
+ 'repoze.zcml',
]
setup(name='repoze.bfg',