summaryrefslogtreecommitdiff
path: root/setup.py
blob: 24a71939ec583ad4c7f17cdbd0343fe784626abe (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
# This file is in the public domain.

from setuptools import setup, find_packages

setup(name='talerbank',
      version='0.6.0pre1',
      description='Taler friendly bank',
      url='git://taler.net/bank',
      author='Marcello Stanisci, Florian Dold',
      author_email='stanisci.m@gmail.com, flo@dold.me',
      license='GPL',
      packages=find_packages(),
      install_requires=["django>=2",
                        "psycopg2",
                        "requests",
                        "uWSGI",
                        "mock",
                        "jinja2",
                        "qrcode",
                        "lxml",
                        "taler-util"],
      scripts=["./bin/taler-bank-manage"],
      package_data={
        'talerbank.app': [
            'templates/*.html',
            'templates/registration/*.html',
            'static/web-common/*.css',
            'static/web-common/*.html',
            'static/web-common/*.png',
            'static/*.css',
            ]
      },
      zip_safe=False)