X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/blobdiff_plain/4518ad4f8995be1470ab38fbb419241504fc8c91..6210bbce4a3e24b97b7b317d9a620effe5b9b2fe:/setup.py diff --git a/setup.py b/setup.py index 00ad5d9..290eaa9 100644 --- a/setup.py +++ b/setup.py @@ -1,21 +1,26 @@ -from setuptools import setup, find_packages +from setuptools import setup setup( name='wradmin', - version='2.0.0', + version='2.2.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", + "wrpylib>=0.7.0", + "Flask", + "Flask-Login", + "Flask-Principal", + "Flask-WTF", + "Flask-SQLAlchemy", + "mysqlclient", ], - packages=['wradmin', 'wradmin.model', 'wradmin.controllers'], - package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo', 'templates/*', 'static/*']}, + packages=['wradmin', 'wradmin.auth', 'wradmin.model', 'wradmin.controllers'], + package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo', 'templates/*', 'templates/auth/*', 'static/*']}, zip_safe=False, )