Skip to content

Commit 0add5c7

Browse files
authored
Merge pull request #38 from pguridi/master
added missing `result_languages.txt` reference in setup.py
2 parents 983e7de + 9ae3722 commit 0add5c7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,20 @@
55

66
setuptools.setup(
77
name="yagooglesearch",
8-
version="1.8.1",
8+
version="1.8.2",
99
author="Brennon Thomas",
1010
author_email="info@opsdisk.com",
1111
description="A Python library for executing intelligent, realistic-looking, and tunable Google searches.",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/opsdisk/yagooglesearch",
1515
packages=setuptools.find_packages(),
16-
package_data={"yagooglesearch": ["user_agents.txt"]},
16+
package_data={
17+
"yagooglesearch": [
18+
"user_agents.txt",
19+
"result_languages.txt",
20+
],
21+
},
1722
install_requires=[
1823
"beautifulsoup4>=4.9.3",
1924
"requests>=2.31.0",

yagooglesearch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# Custom Python libraries.
1313

14-
__version__ = "1.8.1"
14+
__version__ = "1.8.2"
1515

1616
# Logging
1717
ROOT_LOGGER = logging.getLogger("yagooglesearch")

0 commit comments

Comments
 (0)