setup.py 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.1",
  12. description="A privacy-respecting, hackable metasearch engine",
  13. long_description=long_description,
  14. classifiers=[
  15. "Development Status :: 4 - Beta",
  16. "Programming Language :: Python",
  17. "Topic :: Internet",
  18. "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
  19. "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
  20. 'License :: OSI Approved :: GNU Affero General Public License v3'
  21. ],
  22. keywords='meta search engine',
  23. author='Adam Tauber',
  24. author_email='asciimoo@gmail.com',
  25. url='https://github.com/asciimoo/searx',
  26. license='GNU Affero General Public License',
  27. packages=find_packages('.'),
  28. zip_safe=False,
  29. install_requires=[
  30. 'flask',
  31. 'flask-babel',
  32. 'grequests',
  33. 'lxml',
  34. 'pyyaml',
  35. 'setuptools',
  36. 'python-dateutil',
  37. ],
  38. extras_require={
  39. 'test': [
  40. 'coverage',
  41. 'flake8',
  42. 'mock',
  43. 'plone.testing',
  44. 'robotframework',
  45. 'robotframework-debuglibrary',
  46. 'robotframework-httplibrary',
  47. 'robotframework-selenium2library',
  48. 'robotsuite',
  49. 'unittest2',
  50. 'zope.testrunner',
  51. ]
  52. },
  53. entry_points={
  54. 'console_scripts': [
  55. 'searx-run = searx.webapp:run'
  56. ]
  57. },
  58. package_data={
  59. 'searx': [
  60. 'settings.yml',
  61. '../README.rst',
  62. 'static/*/*/*',
  63. 'translations/*/*/*',
  64. 'templates/*/*.xml',
  65. 'templates/*/*.html',
  66. 'templates/*/result_templates/*.html',
  67. ],
  68. },
  69. )