1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/setup.py

73 lines
1.9 KiB
Python
Raw Normal View History

2014-05-10 11:56:19 +02:00
# -*- coding: utf-8 -*-
"""Installer for Searx package."""
from setuptools import setup
from setuptools import find_packages
import os
2014-12-01 12:26:38 +01:00
import sys
# required to load VERSION_STRING constant
sys.path.insert(0, './searx')
from version import VERSION_STRING
2014-05-10 11:56:19 +02:00
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = read('README.rst')
requirements = map(str.strip, open('requirements.txt').readlines())
dev_requirements = map(str.strip, open('requirements-dev.txt').readlines())
2014-05-10 11:56:19 +02:00
setup(
name='searx',
2014-12-01 12:26:38 +01:00
version=VERSION_STRING,
2014-05-10 11:56:19 +02:00
description="A privacy-respecting, hackable metasearch engine",
long_description=long_description,
classifiers=[
2014-12-01 12:26:38 +01:00
"Development Status :: 4 - Beta",
2014-05-10 11:56:19 +02:00
"Programming Language :: Python",
2014-12-01 12:26:38 +01: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-05-10 11:56:19 +02:00
],
2014-12-01 12:26:38 +01:00
keywords='metasearch searchengine search web http',
2014-05-10 11:56:19 +02: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=requirements,
2014-05-10 11:56:19 +02:00
extras_require={
'test': dev_requirements
2014-05-10 11:56:19 +02:00
},
entry_points={
'console_scripts': [
'searx-run = searx.webapp:run'
]
},
package_data={
'searx': [
'settings.yml',
'../README.rst',
2015-09-08 23:05:37 +02:00
'data/*',
'plugins/*/*',
2015-02-09 13:30:16 +01:00
'static/*.*',
'static/*/*.*',
2014-12-01 12:26:38 +01:00
'static/*/*/*.*',
'static/*/*/*/*.*',
'static/*/*/*/*/*.*',
'templates/*/*.*',
'templates/*/*/*.*',
'tests/*',
'tests/*/*',
'tests/*/*/*',
2015-09-08 23:05:37 +02:00
'translations/*/*/*'
2014-05-10 11:56:19 +02:00
],
},
)