summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJohannes Schauer <josch@debian.org>2017-11-24 00:35:54 +0100
committerJohannes Schauer <josch@debian.org>2017-11-24 10:59:04 +0100
commit9bd31dd973740df9336c9b5e0e927aac11065594 (patch)
treef80f3e9038b55c3b73db25e2bbc0c847f13a8be9 /setup.py
parentcb24da35fe300418bcf18bb3150f27227a63bcf0 (diff)
setup.py: do not install static files into usr/lib/python
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/setup.py b/setup.py
index 6466d1f..1b0ae30 100644
--- a/setup.py
+++ b/setup.py
@@ -51,23 +51,9 @@ setup(
},
package_data={
'searx': [
- 'settings.yml',
- '../README.rst',
- '../requirements.txt',
- '../requirements-dev.txt',
'data/*',
'plugins/*/*',
- 'static/*.*',
- 'static/*/*.*',
- 'static/*/*/*.*',
- 'static/*/*/*/*.*',
- 'static/*/*/*/*/*.*',
- 'templates/*/*.*',
- 'templates/*/*/*.*',
- 'tests/*',
- 'tests/*/*',
- 'tests/*/*/*',
- 'translations/*/*/*'
+ 'translations/*/*/*.mo'
],
},