summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py23
1 files changed, 20 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 5b3d589ab..ecb7f056d 100644
--- a/setup.py
+++ b/setup.py
@@ -11,12 +11,12 @@ def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-long_description = read('README.md')
+long_description = read('README.rst')
setup(
name='searx',
- version="0.1",
- description="",
+ version="0.1.2",
+ description="A privacy-respecting, hackable metasearch engine",
long_description=long_description,
classifiers=[
"Programming Language :: Python",
@@ -30,6 +30,7 @@ setup(
zip_safe=False,
install_requires=[
'flask',
+ 'flask-babel',
'grequests',
'lxml',
'pyyaml',
@@ -49,4 +50,20 @@ setup(
'zope.testrunner',
]
},
+ entry_points={
+ 'console_scripts': [
+ 'searx-run = searx.webapp:run'
+ ]
+ },
+ package_data={
+ 'searx': [
+ 'settings.yml',
+ '../README.rst',
+ 'static/*/*',
+ 'translations/*/*',
+ 'templates/*.html',
+ 'templates/result_templates/*.html',
+ ],
+ },
+
)