add SQLAlchemy to requirements

This commit is contained in:
Martin Zimmermann 2014-07-21 23:24:34 +02:00
parent 131951c976
commit 9aa1e9544d

View File

@ -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")