summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py27
-rw-r--r--talerblog/__init__.py0
-rw-r--r--talerblog/tests.conf0
-rw-r--r--talerblog/tests.py0
4 files changed, 27 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..0f4fdf5
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,27 @@
+from setuptools import setup, find_packages
+
+setup(name='talerblog',
+ version='0.0',
+ description='Example blog site for GNU Taler',
+ url='git://taler.net/blog',
+ 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-blog'],
+ zip_safe=False)
diff --git a/talerblog/__init__.py b/talerblog/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/talerblog/__init__.py
diff --git a/talerblog/tests.conf b/talerblog/tests.conf
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/talerblog/tests.conf
diff --git a/talerblog/tests.py b/talerblog/tests.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/talerblog/tests.py