logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

version.py (928B)


  1. # -*- coding: utf-8 -*-
  2. '''
  3. searx is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. searx is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with searx. If not, see < http://www.gnu.org/licenses/ >.
  13. (C) 2013- by Adam Tauber, <asciimoo@gmail.com>
  14. '''
  15. # version of searx
  16. VERSION_MAJOR = 0
  17. VERSION_MINOR = 15
  18. VERSION_BUILD = 0
  19. VERSION_STRING = "{0}.{1}.{2}".format(VERSION_MAJOR,
  20. VERSION_MINOR,
  21. VERSION_BUILD)