setup.py 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- coding: utf-8 -*-
  2. # SPDX-License-Identifier: AGPL-3.0-or-later
  3. """
  4. Searx plugins from The Green Web Foundation
  5. tgwf-searx-plugins
  6. All results of searx queries that not hosted on a green infrastructure are
  7. filtered
  8. """
  9. from setuptools import setup
  10. GIT_URL='https://github.com/return42/tgwf-searx-plugins'
  11. setup(
  12. name = 'tgwf-searx-plugins'
  13. , version = '0.4'
  14. , description = 'The Green Web Foundation searx plugins'
  15. , long_description = __doc__
  16. , url = GIT_URL
  17. , author = 'The Green Web Foundation'
  18. , author_email = 'chris@productscience.co.uk'
  19. , project_urls = {
  20. "Code" : GIT_URL
  21. , "Issue tracker" : GIT_URL + "/issues"
  22. }
  23. , license = 'GNU Affero General Public License'
  24. , zip_safe = False
  25. , py_modules = [
  26. 'only_show_green_results'
  27. ]
  28. , entry_points = {
  29. 'searxng.plugins' : [
  30. 'tgwf.green-results = only_show_green_results'
  31. ]
  32. }
  33. )