| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | # SPDX-License-Identifier: AGPL-3.0-or-later"""Installer for SearXNG package."""from setuptools import setup, find_packagesfrom searx.version import VERSION_TAG, GIT_URLfrom searx import get_settingwith open('README.rst', encoding='utf-8') as f:    long_description = f.read()with open('requirements.txt') as f:    requirements = [ l.strip() for l in f.readlines()]with open('requirements-dev.txt') as f:    dev_requirements = [ l.strip() for l in f.readlines()]setup(    name='searxng',    python_requires=">=3.8",    version=VERSION_TAG,    description="A privacy-respecting, hackable metasearch engine",    long_description=long_description,    url=get_setting('brand.docs_url'),    project_urls={        "Code": GIT_URL,        "Issue tracker": get_setting('brand.issue_url')    },    classifiers=[        "Programming Language :: Python",        "Topic :: Internet",        "Topic :: Internet :: WWW/HTTP :: HTTP Servers",        "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",        'License :: OSI Approved :: GNU Affero General Public License v3'    ],    keywords='metasearch searchengine search web http',    author='SearXNG dev team',    author_email='contact@searxng.org',    license='GNU Affero General Public License',    packages=find_packages(        include=[            'searx', 'searx.*', 'searx.*.*', 'searx.*.*.*',        ]    ),    install_requires=requirements,    extras_require={        'test': dev_requirements    },    entry_points={        'console_scripts': [            'searxng-run = searx.webapp:run',            'searxng-checker = searx.search.checker.__main__:main'        ]    },    package_data={        'searx': [            'settings.yml',            '*.toml',            '*.msg',            'search/checker/scheduler.lua',            'data/*.json',            'data/*.txt',            'data/*.ftz',            'favicons/*.toml',            'infopage/*/*',            'static/themes/simple/css/*',            'static/themes/simple/css/*/*',            'static/themes/simple/img/*',            'static/themes/simple/js/*',            'templates/*/*',            'templates/*/*/*',            'translations/*',            'translations/*/*',            'translations/*/*/*',        ],    },)
 |