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

setup(
    name='talerdonations',
    version='0.6.0pre1',
    description='Example donations site for GNU Taler',
    url='git://taler.net/donations',
    author=['Marcello Stanisci', 'Florian Dold'],
    author_email=['stanisci.m@gmail.com', 'dold@taler.net'],
    license='GPL',
    packages=find_packages(),
    install_requires=["Flask>=0.10", "requests", "uwsgi", "jsmin", "qrcode", "lxml"],
    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=['./bin/taler-merchant-donations'],
    zip_safe=False
)