]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blobdiff - setup.py
Prevent some updates.
[philipp/winterrodeln/wradmin.git] / setup.py
index 430f8e1dcf9a1b319c11249bd7fabe6229355ddd..11903e66c21f6df047452ac79cc7af02b8fe0d50 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,24 +2,29 @@ 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',
     url='https://www.winterrodeln.org/',
     install_requires=[
-        "SQLAlchemy>=0.5",
+        "SQLAlchemy==1.2.18",
         "lxml>=2.2",
         "Babel>=0.9",
         "paginate>=0.5.6",
-        "wrpylib>=0.6.0",
-        "Flask",
-        "Flask-Login",
+        "wrpylib>=0.7.0",
+        "Flask==1.1.4",
+        "Flask-Login==0.4.1",
         "Flask-Principal",
         "Flask-WTF",
+        "Flask-SQLAlchemy==2.4.4",
         "mysqlclient",
+        "Jinja2<3.0.0",
+        "MarkupSafe==1.1.0",
+        "Werkzeug<1.0.0",
+        "itsdangerous==0.24",
     ],
     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,
 )