from setuptools import setup, find_packages setup(name='talerbackoffice', version='0.0', description='Back-office site for GNU Taler', url='git://taler.net/backoffice', author='Marcello Stanisci', author_email='stanisci.m@gmail.com', license='GPL', packages=find_packages(), install_requires=["Flask>=0.10", "flask_babel"], tests_require=["nose", "mock", "beautifulsoup4"], test_suite="nose.collector", package_data={ '':[ "backoffice/static/*.js", "backoffice/static/*.css", "backoffice/static/*.svg", "backoffice/trans_dirs.cfg", "backoffice/templates/*.html", "backoffice/templates/translations/it/LC_MESSAGES/messages.mo", "backoffice/templates/translations/en/LC_MESSAGES/messages.mo", "backoffice/templates/translations/de/LC_MESSAGES/messages.mo", "backoffice/templates/translations/es/LC_MESSAGES/messages.mo", "backoffice/templates/translations/pt/LC_MESSAGES/messages.mo", "backoffice/templates/translations/fr/LC_MESSAGES/messages.mo", "backoffice/templates/translations/ru/LC_MESSAGES/messages.mo", "backoffice/static/web-common/*.png", "backoffice/static/web-common/*.css", "backoffice/static/web-common/*.js", "backoffice/static/web-common/*.js.tar.gz", "backoffice/static/web-common/*.html" ] }, scripts=['taler-merchant-backoffice'], zip_safe=False)