mirror of
https://github.com/benbusby/whoogle-search
synced 2024-11-01 03:20:30 +00:00
0c0a01b83f
Bumped version to 0.2.1 for next release Updated image in opensearch template to use base64 image Updated opensearch route to serve file as attachment
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',
|
|
],
|
|
)
|