summaryrefslogtreecommitdiff
path: root/buildout.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildout.cfg')
-rw-r--r--buildout.cfg32
1 files changed, 32 insertions, 0 deletions
diff --git a/buildout.cfg b/buildout.cfg
new file mode 100644
index 000000000..54a095eff
--- /dev/null
+++ b/buildout.cfg
@@ -0,0 +1,32 @@
+[buildout]
+extends = base.cfg
+develop = .
+
+eggs =
+ searx [test]
+
+parts +=
+ pyscripts
+ robot
+ test
+
+
+[pyscripts]
+recipe = zc.recipe.egg:script
+eggs = ${buildout:eggs}
+interpreter = py
+dependent-scripts = true
+entry-points =
+ searx-run=searx.webapp:run
+
+
+[robot]
+recipe = zc.recipe.testrunner
+eggs = ${buildout:eggs}
+defaults = ['--color', '--auto-progress', '--layer', 'SearxRobotLayer']
+
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = ${buildout:eggs}
+defaults = ['--color', '--auto-progress', '--layer', 'SearxTestLayer', '--layer', '!SearxRobotLayer']