From e1012af9d640aa0be0e5b37fccc22fd7a2e3cc75 Mon Sep 17 00:00:00 2001 From: Mathias Behrle Date: Fri, 31 Oct 2014 12:28:03 +0100 Subject: [PATCH] Adding wtforms to requires. Since wtforms is used, it should be in requires. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 51b8da9..4d83f9f 100755 --- a/setup.py +++ b/setup.py @@ -60,7 +60,9 @@ def run(self): major_version = int(major_version) minor_version = int(minor_version) -requires = [] +requires = [ + 'wtforms', + ] MODULE = 'nereid_checkout' PREFIX = 'trytond'