summaryrefslogtreecommitdiff
path: root/setup.py
blob: f1f54bea2ee838495b110b0f3192ee07d0f6f327 (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
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages

setup(name='talermerchantdemos',
      version='0.8.0',
      description='Example blog/donations/survey sites for GNU Taler',
      url='git://taler.net/taler-merchant-demos',
      author=['Marcello Stanisci', 'Florian Dold', 'Christian Grothoff'],
      author_email=['ms@taler.net', 'florian@dold.me', 'cg@taler.net'],
      license='AGPL',
      packages=find_packages(),
      install_requires=["Flask>=0.10",
                        "beautifulsoup4",
                        "flask_babel",
                        "jsmin",
                        "requests",
                        "taler-util"],
      package_data={
          '':[
              # Common
              "static/*.css",
              "static/*.svg",
              "templates/*.j2",
              # Landing files
              "landing/templates/*.j2",
              "landing/static/*.css",
              "landing/translations/*/LC_MESSAGES/*.mo",
              # Blog files
              "blog/templates/*.html",
              "blog/templates/*.j2",
              "blog/static/favicon.ico",
              "blog/static/*.css",
              "blog/articles/*/*",
              "blog/translations/*/LC_MESSAGES/*.mo",
              "translations/*/LC_MESSAGES/*.mo",
              "blog/data/*",
              # Donation files
              "donations/templates/*.j2",
              "donations/static/*.css",
              "donations/translations/*/LC_MESSAGES/*.mo",
              # Survey files
              "survey/templates/*.j2",
              "survey/static/favicon.ico",
              "survey/static/*.js",
              "survey/static/*.css",
              "survey/translations/*/LC_MESSAGES/*.mo",
          ]
      },
      scripts=['./bin/taler-merchant-demos'],
      zip_safe=False)