Skip to content

Commit

Permalink
Merge pull request #38 from pguridi/master
Browse files Browse the repository at this point in the history
added missing `result_languages.txt` reference in setup.py
  • Loading branch information
opsdisk authored Dec 11, 2023
2 parents 983e7de + 9ae3722 commit 0add5c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,20 @@

setuptools.setup(
name="yagooglesearch",
version="1.8.1",
version="1.8.2",
author="Brennon Thomas",
author_email="[email protected]",
description="A Python library for executing intelligent, realistic-looking, and tunable Google searches.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/opsdisk/yagooglesearch",
packages=setuptools.find_packages(),
package_data={"yagooglesearch": ["user_agents.txt"]},
package_data={
"yagooglesearch": [
"user_agents.txt",
"result_languages.txt",
],
},
install_requires=[
"beautifulsoup4>=4.9.3",
"requests>=2.31.0",
Expand Down
2 changes: 1 addition & 1 deletion yagooglesearch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# Custom Python libraries.

__version__ = "1.8.1"
__version__ = "1.8.2"

# Logging
ROOT_LOGGER = logging.getLogger("yagooglesearch")
Expand Down

0 comments on commit 0add5c7

Please sign in to comment.