X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/blobdiff_plain/889cb6db76860dac63ed0394c9510cf0db35cbb1..cc20789ca128309cf8d8419971782ed946a896c6:/setup.py diff --git a/setup.py b/setup.py index 44a234f..32923db 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,12 @@ -from setuptools import setup, find_packages +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='http://www.winterrodeln.org/', + url='https://www.winterrodeln.org/', install_requires=[ "SQLAlchemy>=0.5", "lxml>=2.2", @@ -14,8 +14,12 @@ setup( "paginate>=0.5.6", "wrpylib>=0.6.0", "Flask", + "Flask-Login", + "Flask-Principal", + "Flask-WTF", + "mysqlclient", ], - packages=['wradmin', 'wradmin.model', 'wradmin.controllers'], + packages=['wradmin', 'wradmin.auth', 'wradmin.model', 'wradmin.controllers'], package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo', 'templates/*', 'static/*']}, zip_safe=False, )