X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/blobdiff_plain/6d618c7203a3a384e9497f7d83768df700ae7e9b..6210bbce4a3e24b97b7b317d9a620effe5b9b2fe:/setup.py diff --git a/setup.py b/setup.py index 430f8e1..290eaa9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='wradmin', - version='2.1.0', + version='2.2.0', description='Administrative Interface for Winterrodeln', author='Philipp Spitzer', author_email='philipp.spitzer@winterrodeln.org', @@ -12,14 +12,15 @@ setup( "lxml>=2.2", "Babel>=0.9", "paginate>=0.5.6", - "wrpylib>=0.6.0", + "wrpylib>=0.7.0", "Flask", "Flask-Login", "Flask-Principal", "Flask-WTF", + "Flask-SQLAlchemy", "mysqlclient", ], packages=['wradmin', 'wradmin.auth', 'wradmin.model', 'wradmin.controllers'], - package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo', 'templates/*', 'static/*']}, + package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo', 'templates/*', 'templates/auth/*', 'static/*']}, zip_safe=False, )