summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py17
1 files changed, 11 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 79f2acc42..7048fa22b 100644
--- a/setup.py
+++ b/setup.py
@@ -15,13 +15,18 @@ long_description = read('README.rst')
setup(
name='searx',
- version="0.3.0",
+ version="0.3.1",
description="A privacy-respecting, hackable metasearch engine",
long_description=long_description,
classifiers=[
+ "Development Status :: 4 - Beta",
"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='meta search engine',
+ keywords='metasearch searchengine search web http',
author='Adam Tauber',
author_email='asciimoo@gmail.com',
url='https://github.com/asciimoo/searx',
@@ -61,11 +66,11 @@ setup(
'searx': [
'settings.yml',
'../README.rst',
- 'static/*/*',
+ 'static/*/*/*',
'translations/*/*/*',
- 'templates/*.xml',
- 'templates/*.html',
- 'templates/result_templates/*.html',
+ 'templates/*/*.xml',
+ 'templates/*/*.html',
+ 'templates/*/result_templates/*.html',
],
},