Browse Source

[fix] remove requirements from setup.py

SearXNG should already be installed before this plugin is installed.  Naming
the 'searx' and other requirements will force to install these packages from
PyPi / what is not wanted.

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Markus Heiser 3 years ago
parent
commit
21c55fdd4f
1 changed files with 2 additions and 7 deletions
  1. 2 7
      setup.py

+ 2 - 7
setup.py

@@ -15,7 +15,7 @@ GIT_URL='https://github.com/return42/tgwf-searx-plugins'
 
 setup(
     name                = 'tgwf-searx-plugins'
-    , version           = '0.2'
+    , version           = '0.3'
     , description       = 'The Green Web Foundation searx plugins'
     , long_description  = __doc__
     , url               =  GIT_URL
@@ -27,16 +27,11 @@ setup(
     }
     , license           = 'GNU Affero General Public License'
     , zip_safe          = False
-    , install_requires  = """
-searx
-requests
-flask-babel
-"""
     , py_modules        = [
         'only_show_green_results'
     ]
     , entry_points      = {
-        'searx.plugins' : [
+        'searxng.plugins' : [
             'tgwf.green-results = only_show_green_results'
         ]
     }