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

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