2020-05-06 23:24:18 +00:00
|
|
|
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',
|
2020-06-02 18:54:47 +00:00
|
|
|
version='0.2.0',
|
2020-05-06 23:24:18 +00:00
|
|
|
include_package_data=True,
|
|
|
|
install_requires=requirements,
|
2020-05-15 22:47:39 +00:00
|
|
|
description='Self-hosted, ad-free, privacy-respecting Google metasearch engine',
|
2020-05-06 23:24:18 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
url='https://github.com/benbusby/whoogle-search',
|
2020-05-07 00:13:02 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'whoogle-search=app.routes:run_app',
|
|
|
|
]
|
|
|
|
},
|
2020-05-06 23:24:18 +00:00
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
],
|
|
|
|
)
|