summaryrefslogtreecommitdiff
path: root/setup.py
blob: d5bf4c3521a4b258aa6b2dbf41cfa00bb3c70f90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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)