X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/blobdiff_plain/b7af8c8457b6df2e8f3a78ec4472ed8adfa5fb43..6210bbce4a3e24b97b7b317d9a620effe5b9b2fe:/setup.py diff --git a/setup.py b/setup.py index 0546aa7..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,13 +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, )