Browse Source

Merge pull request #72 from matejc/fixsdist

change package data paths
Adam Tauber 10 years ago
parent
commit
b44643222f
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      setup.py

+ 4
- 4
setup.py View File

@@ -61,11 +61,11 @@ setup(
61 61
         'searx': [
62 62
             'settings.yml',
63 63
             '../README.rst',
64
-            'static/*/*',
64
+            'static/*/*/*',
65 65
             'translations/*/*/*',
66
-            'templates/*.xml',
67
-            'templates/*.html',
68
-            'templates/result_templates/*.html',
66
+            'templates/*/*.xml',
67
+            'templates/*/*.html',
68
+            'templates/*/result_templates/*.html',
69 69
         ],
70 70
     },
71 71