summaryrefslogtreecommitdiff
path: root/setup.py
blob: a917c11cc449005c129a754c81fb70f82c7fe692 (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
from setuptools import setup, find_packages

setup(name='talerdonations',
      version='0.0',
      description='Example donations site for GNU Taler',
      url='git://taler.net/donations',
      author='Marcello Stanisci',
      author_email='stanisci.m@gmail.com',
      license='GPL',
      packages=find_packages(),
      install_requires=["Flask>=0.10",
                        "requests",
                        "uwsgi",
                        "jsmin"],
      tests_require=["mock", "nose"],
      test_suite="nose.collector",
      package_data={
          '':[
              "donations/templates/*.html",
              "donations/static/*.svg",
              "donations/static/*.css",
              "donations/static/web-common/*.png",
              "donations/static/web-common/*.css",
              "donations/static/web-common/*.html",
      ]
      },
      scripts=['taler-merchant-donations'],
      zip_safe=False)