summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac10
-rwxr-xr-xsetup.py5
2 files changed, 4 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac
index c7440be..e2ecfbe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,16 +49,6 @@ AC_CHECK_PROG([tsc],[tsc],[yes],[no])
AM_CONDITIONAL([HAVE_TSC], [test "x$tsc" = xyes])
#
-# Check for minifier
-#
-AC_MSG_CHECKING([Checking for jsmin])
-python3 -m jsmin &> /dev/null
-if test $? -ne 0;
- then
- AC_MSG_ERROR([Please install Python3 module 'jsmin'])
-fi
-
-#
# Report
#
if test x$pyheaders != x1; then
diff --git a/setup.py b/setup.py
index 3e89959..a917c11 100755
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,10 @@ setup(name='talerdonations',
author_email='stanisci.m@gmail.com',
license='GPL',
packages=find_packages(),
- install_requires=["Flask>=0.10", "requests", "uwsgi"],
+ install_requires=["Flask>=0.10",
+ "requests",
+ "uwsgi",
+ "jsmin"],
tests_require=["mock", "nose"],
test_suite="nose.collector",
package_data={