diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -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', ], }, |