X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/blobdiff_plain/889cb6db76860dac63ed0394c9510cf0db35cbb1..2561340cc245aecfa1be64c2f8589c91411d5283:/setup.py diff --git a/setup.py b/setup.py index 44a234f..a6123b6 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup, find_packages +from setuptools import setup setup( name='wradmin', @@ -6,7 +6,7 @@ setup( 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,6 +14,8 @@ setup( "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/*']},