-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (21 loc) · 844 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
VERSION = '2024.03.01-beta1'
DESCRIPTION = 'A Python package for searching in Google Search'
LONG_DESCRIPTION = 'A Python package for searching in Google Search, with the ability to search for images, videos, news, and specific file types.'
setup(
name="google-search-python",
version=VERSION,
author="Anhy Krishna Fitiavana",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['requests', 'bs4', 'lxml'],
keywords=['python', 'google', 'scraping'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)