2014-01-12 11:40:27 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Installer for Searx package."""
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
def read(*rnames):
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
|
|
|
|
|
|
|
|
2014-01-21 19:51:07 +00:00
|
|
|
long_description = read('README.rst')
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='searx',
|
2014-07-07 12:38:24 +00:00
|
|
|
version="0.3.1",
|
2014-01-21 23:59:18 +00:00
|
|
|
description="A privacy-respecting, hackable metasearch engine",
|
2014-01-12 11:40:27 +00:00
|
|
|
long_description=long_description,
|
|
|
|
classifiers=[
|
2014-08-08 19:51:15 +00:00
|
|
|
"Development Status :: 4 - Beta",
|
2014-01-12 11:40:27 +00:00
|
|
|
"Programming Language :: Python",
|
2014-08-08 19:51:15 +00:00
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3'
|
2014-01-12 11:40:27 +00:00
|
|
|
],
|
2014-09-06 11:51:44 +00:00
|
|
|
keywords='metasearch searchengine search web http',
|
2014-01-12 11:40:27 +00:00
|
|
|
author='Adam Tauber',
|
|
|
|
author_email='asciimoo@gmail.com',
|
|
|
|
url='https://github.com/asciimoo/searx',
|
|
|
|
license='GNU Affero General Public License',
|
|
|
|
packages=find_packages('.'),
|
|
|
|
zip_safe=False,
|
|
|
|
install_requires=[
|
|
|
|
'flask',
|
2014-01-21 23:15:23 +00:00
|
|
|
'flask-babel',
|
2014-01-12 11:40:27 +00:00
|
|
|
'grequests',
|
|
|
|
'lxml',
|
2014-01-18 23:17:02 +00:00
|
|
|
'pyyaml',
|
2014-01-12 11:40:27 +00:00
|
|
|
'setuptools',
|
2014-03-18 12:19:50 +00:00
|
|
|
'python-dateutil',
|
2014-01-12 11:40:27 +00:00
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'test': [
|
|
|
|
'coverage',
|
|
|
|
'flake8',
|
2014-01-31 06:08:24 +00:00
|
|
|
'mock',
|
2014-01-12 11:40:27 +00:00
|
|
|
'plone.testing',
|
|
|
|
'robotframework',
|
|
|
|
'robotframework-debuglibrary',
|
|
|
|
'robotframework-httplibrary',
|
|
|
|
'robotframework-selenium2library',
|
|
|
|
'robotsuite',
|
|
|
|
'unittest2',
|
|
|
|
'zope.testrunner',
|
|
|
|
]
|
|
|
|
},
|
2014-01-19 21:59:01 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'searx-run = searx.webapp:run'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
package_data={
|
|
|
|
'searx': [
|
|
|
|
'settings.yml',
|
2014-01-21 19:51:07 +00:00
|
|
|
'../README.rst',
|
2014-06-16 12:02:51 +00:00
|
|
|
'static/*/*/*',
|
2014-02-13 16:28:25 +00:00
|
|
|
'translations/*/*/*',
|
2014-06-16 12:02:51 +00:00
|
|
|
'templates/*/*.xml',
|
|
|
|
'templates/*/*.html',
|
|
|
|
'templates/*/result_templates/*.html',
|
2014-01-19 21:59:01 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2014-01-12 11:40:27 +00:00
|
|
|
)
|