From 35178b02daaac103930c3463705bf5911b49c219 Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Fri, 24 Nov 2017 19:52:23 +0100 Subject: setuptools --- __init__.py | 0 setup.py | 27 +++++++++++++++++++++++++++ talerdonations/tests.conf | 0 talerdonations/tests.py | 0 4 files changed, 27 insertions(+) create mode 100644 __init__.py create mode 100755 setup.py create mode 100644 talerdonations/tests.conf create mode 100644 talerdonations/tests.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..c8d70c2 --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +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"], + package_data={ + '':[ + "survey/templates/*.html", + "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=['taler-merchant-donations'], + zip_safe=False) diff --git a/talerdonations/tests.conf b/talerdonations/tests.conf new file mode 100644 index 0000000..e69de29 diff --git a/talerdonations/tests.py b/talerdonations/tests.py new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3