-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 844 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 844 Bytes
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 = '2023.03.18'
DESCRIPTION = 'A Python package to reverse image search in Google Lens'
LONG_DESCRIPTION = 'A Python package to reverse image search in Google Lens, with the ability to search by file path or by url.'
setup(
name="google-lens-python",
version=VERSION,
author="Anhy Krishna Fitiavana",
author_email="fitiavana.krishna@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['requests>=2.34.2', 'beautifulsoup4>=4.15.0'],
keywords=['python', 'google', 'scraping'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)