]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blobdiff - setup.py
Implement authentification but don't enforce it yet.
[philipp/winterrodeln/wradmin.git] / setup.py
index 00ad5d9f6008123590c871140ce3014247aed62f..a6123b608ad6b9177cd90fa2225f01c79df37186 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,19 +1,21 @@
-from setuptools import setup, find_packages
+from setuptools import setup
 
 setup(
     name='wradmin',
-    version='2.0.0',
+    version='2.1.0',
     description='Administrative Interface for Winterrodeln',
     author='Philipp Spitzer',
     author_email='philipp.spitzer@winterrodeln.org',
-    url='http://www.winterrodeln.org/',
+    url='https://www.winterrodeln.org/',
     install_requires=[
         "SQLAlchemy>=0.5",
-        "Genshi>=0.4",
         "lxml>=2.2",
         "Babel>=0.9",
         "paginate>=0.5.6",
         "wrpylib>=0.6.0",
+        "Flask",
+        "Flask-Login",
+        "Flask-WTF",
     ],
     packages=['wradmin', 'wradmin.model', 'wradmin.controllers'],
     package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo', 'templates/*', 'static/*']},