- Updated dark theme (#121) - Dark theme is no longer the previous high contrast "white on black" color scheme - New configuration settings - Split interface and result language config (#89) - Added option for using privacy respecting result alternatives (#106) - `youtube.com` -> `invidiou.site` - `twitter.com` -> `nitter.net` - `instagram.com` -> `bibliogram.art` - Improved search suggestion arrow key navigation behavior (#115) - Added repl.it deployment (#114) - Improved ad filtering for non-English results (f7380ae15d
) - Split interface and result language config (#89) - New config option: privacy respecting result alternatives (#106) - Updated search suggestion behavior (#115) - Minor project improvements and refactoring: - Added footer to results UI - Updated opensearch template - Various bug fixes, including: - Fixed pipx run command (#118) - Fixed browser autocomplete (#128) - Fixed missing autofocus on search field in Firefox (dfb1e81fa1
)
30 lines
875 B
Python
30 lines
875 B
Python
import setuptools
|
|
|
|
long_description = open('README.md', 'r').read()
|
|
|
|
requirements = list(open('requirements.txt', 'r'))
|
|
|
|
setuptools.setup(
|
|
author='Ben Busby',
|
|
author_email='benbusby@protonmail.com',
|
|
name='whoogle-search',
|
|
version='0.2.1',
|
|
include_package_data=True,
|
|
install_requires=requirements,
|
|
description='Self-hosted, ad-free, privacy-respecting Google metasearch engine',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/benbusby/whoogle-search',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'whoogle-search=app.routes:run_app',
|
|
]
|
|
},
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
)
|