setup.py 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # -*- coding: utf-8 -*-
  2. """Installer for Searx package."""
  3. from setuptools import setup
  4. from setuptools import find_packages
  5. import os
  6. def read(*rnames):
  7. return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
  8. long_description = read('README.rst')
  9. setup(
  10. name='searx',
  11. version="0.3.0",
  12. description="A privacy-respecting, hackable metasearch engine",
  13. long_description=long_description,
  14. classifiers=[
  15. "Programming Language :: Python",
  16. ],
  17. keywords='meta search engine',
  18. author='Adam Tauber',
  19. author_email='asciimoo@gmail.com',
  20. url='https://github.com/asciimoo/searx',
  21. license='GNU Affero General Public License',
  22. packages=find_packages('.'),
  23. zip_safe=False,
  24. install_requires=[
  25. 'flask',
  26. 'flask-babel',
  27. 'grequests',
  28. 'lxml',
  29. 'pyyaml',
  30. 'setuptools',
  31. 'python-dateutil',
  32. ],
  33. extras_require={
  34. 'test': [
  35. 'coverage',
  36. 'flake8',
  37. 'mock',
  38. 'plone.testing',
  39. 'robotframework',
  40. 'robotframework-debuglibrary',
  41. 'robotframework-httplibrary',
  42. 'robotframework-selenium2library',
  43. 'robotsuite',
  44. 'unittest2',
  45. 'zope.testrunner',
  46. ]
  47. },
  48. entry_points={
  49. 'console_scripts': [
  50. 'searx-run = searx.webapp:run'
  51. ]
  52. },
  53. package_data={
  54. 'searx': [
  55. 'settings.yml',
  56. '../README.rst',
  57. 'static/*/*/*',
  58. 'translations/*/*/*',
  59. 'templates/*/*.xml',
  60. 'templates/*/*.html',
  61. 'templates/*/result_templates/*.html',
  62. ],
  63. },
  64. )