From 9aa1e9544d6b0dbcdc70778490703fe9bc61f539 Mon Sep 17 00:00:00 2001 From: Martin Zimmermann Date: Mon, 21 Jul 2014 23:24:34 +0200 Subject: [PATCH] add SQLAlchemy to requirements --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 831fed5..284f789 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import sys from setuptools import setup, find_packages -requires = ['itsdangerous', 'misaka', 'html5lib'] +requires = ['itsdangerous', 'misaka', 'html5lib>=0.95', 'SQLAlchemy>=0.7.6'] if (3, 0) <= sys.version_info < (3, 3): raise SystemExit("Python 3.0, 3.1 and 3.2 are not supported")