From a178178aace57184c6c971e751a5787c8fe76485 Mon Sep 17 00:00:00 2001 From: Gael Pasgrimaud Date: Fri, 23 Dec 2011 12:42:37 +0100 Subject: [PATCH] add zope.component as a dependencie --- buildout.cfg | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/buildout.cfg b/buildout.cfg index 435af8c..fd19a27 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -9,7 +9,7 @@ eggs = Mako>=0.3.6 FormAlchemy>=1.4.1 PasteScript>=1.7.4 - pyramid>=1.1 + pyramid>=1.2.9 pyramid_formalchemy pyramid_handlers pyramidapp diff --git a/setup.py b/setup.py index 63b6b9a..3a1bf39 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,8 @@ here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() -requires = ['pyramid>=1.1', 'WebError', 'FormAlchemy>=1.3.8', 'Babel'] +requires = ['pyramid>=1.1', 'WebError', 'FormAlchemy>=1.3.8', 'Babel', + 'zope.component'] setup(name='pyramid_formalchemy', version='0.4.3dev',